**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
3天前关闭。
Improve this question
这里是我的项目:
https://github.com/JonathanDelVecchio/SE
我检查了我的YML,在输出窗口中使用8080端口成功引导。
Output window
已尝试运行测试“get”请求以:
“http://localhost:8080/api/students/test”
找不到问题的根源,我知道代码可能是一团乱,也没有做正确的,但任何建议将是伟大的。
1条答案
按热度按时间qyswt5oh1#
您的spring应用程序主配置(带有@SpringBootApplication的配置)位于包“com.sebe.application”中。这将组件扫描限制到该包。
@SpringBootApplication annotation等同于@Configuration、@EnableAutoConfiguration和@ComponentScan及其默认值。
你有两个选择
1.将类SabeApplication移动到包“com.sebe”中,或者
1.添加一个@ComponentScan(basePackages = {“com.sebe”})到SabeApplication。您也可以缩短此。
祝你好运