标签: spring-boot spring-boot-actuator domain-model
我对我的域模型和执行器端点“ beans”有些困惑:
1。 我以为,在我的SpringBoot2应用程序中,我可以在端点上的IoC中看到每个创建的bean: 本地主机:8080 / actuator / beans 我看不到任何@Entity bean。但是我可以执行以下操作:
userRespository.findAll().size(); //works fine
为什么我可以使用我的域模型,但在执行器中看不到这些模型?