Вы должны добавить модуль mvc
для сканирования пути к классам.
@SpringBootApplication(scanBasePackageClasses = {YourSpringBootApplication.class, YourMVCClassInRootPackage.class})
public class YourSpringBootApplication {
}
Предположим, ваш модуль MVC выглядит следующим образом:
/com/path/
DummyBean.class
/com/path/child1/
AnotherBean.class
AnotherBeanX.class
AnotherBeanY.class
/com/path/child2
AnotherBean2.class
AnotherBeanZ.class
Затем вы выбираете YourMVCClassInRootPackage
is DummyBean
.
Если ваш модуль MVC выглядит следующим образом:
/com/path/child1/
AnotherBean.class
AnotherBeanX.class
AnotherBeanY.class
/com/path/child2
AnotherBean2.class
AnotherBeanZ.class
Нет класса в самом верхнем пакете, поэтому вы либо создаете DummyBean.java
в верхнем пакете (например, /com/path/DummyBean
), либовключить все AnotherBean
, AnotherBean2
для сканирования пути к классам. (выберите один класс для каждой упаковки)