小编典典

通过Spring Boot在同一上下文中创建的对象的两个不同的哈希码

spring-boot

我编写了一个简单的Spring Boot应用程序,稍后将扩展它以构建Spring REST客户端。我有一个工作代码;我在玩耍以更好地理解这些概念。代码如下。

@SpringBootApplication
public class RestClientApplication {

public static void main(String[] args) {
    SpringApplication.run(RestClientApplication.class, args);

    try (AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(
            RestClientApplication.class)) {
        System.out.println(" Getting RestTemplate : " + ctx.getBean("restTemplate"));
    }
}

@Bean
public RestTemplate restTemplate(RestTemplateBuilder restTemplateBuilder) {
    return restTemplateBuilder.build();
}

@Bean
public CommandLineRunner run(RestTemplate template) {
    return args -> {
        System.out.println("Rest Template instance from CLR is : " + template);
    };
}

}

观察

Rest Template instance from CLR is : org.springframework.web.client.RestTemplate@1e53135d
Getting RestTemplate : org.springframework.web.client.RestTemplate@5aa6202e

问题 我假设哈希码是相同的。这是预期的行为吗?是的,如何?


阅读 292

收藏
2020-05-30

共1个答案

小编典典

您创建两个不同的Spring上下文:

// first context
SpringApplication.run(RestClientApplication.class, args);

// second context
try (AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(
        RestClientApplication.class)) {
    System.out.println(" Getting RestTemplate : " + ctx.getBean("restTemplate"));
}

因此,结果是预期的。

2020-05-30