我们可以在弹簧启动中集成多个模块吗?

时间:2017-05-09 14:17:19

标签: spring hibernate spring-boot

目前我们在spring boot中使用单个模块,现在我们在spring boot中需要多个模块,有没有人告诉我如何在spring boot中集成多个模块。

1 个答案:

答案 0 :(得分:0)

是的,你需要告诉你的SpringBootApplicationClass在你的模块中查找控制器,因为你的子模块不会在那个类中被扫描。你可以使用@ComponentScan(" package path")来告诉main用于扫描包含模块的包的类。