如何在Spring Boot中从一个目录访问控制器或组件到另一个目录?



试图从父目录访问控制器。我已经使用这个方法从子目录调用它。

<dependency>
<groupId>com.sample</groupId>
<artifactId>sample-core</artifactId>
</dependency

下面是上述使用

的错误
[ERROR] /D:/Projects/sample/src/main/java/com/sample/controllers/abcController.java
package com.sample.controller does not exist

任何帮助都很感激,帮助我从父母或不同的目录获得访问权。

你需要展示春天包含其他类扫描超过当前项目

我想你是在寻找@ComponentScan(basePackages={"com.sample"}),告诉spring看到您的第三方软件包

@SpringBootApplication
@EntityScan(basePackages = {"br.com.scan-others-entities-in-other-projects"})
@ComponentScan(basePackages = {"br.com.my-curent-project", "br.com.scan-other-configs-and-controllers"})
@EnableJpaRepositories(basePackages = {"br.com.com-other-repositories"})
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}

相关内容

  • 没有找到相关文章