springboot能扫描到controller,页面访问不到

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot能扫描到controller,页面访问不到相关的知识,希望对你有一定的参考价值。

springboot能扫描到controller,页面访问不到
网页访问的错误为404 求大神帮忙解答~~ 万分感激

参考技术A

    你路径没有些正确

    你可以尝试一下最简单的跳转

    你可以重新创建一个项目试试看看对比一下你就会发现问题了

    最主要你的路径你自己写的太繁杂

SpringBoot中出现的错误

1.Field boy in com.huhu.SpringDemo.HelloController required a bean of type ‘com.huhu.SpringBean.Boy‘ that could not be found.

解决办法:

1.将这个类放到与Spring boot的启动类需要放在需要扫描类的上层目录,这样才能扫描到同级或者子类需要注册的类。 

2.在你使用的Controller上面加上@ComponentScan(basePackages="com.xx"),basePackages注意范围,太大不行,太耗时间了,太小扫描不到

 

2.There was an unexpected error (type=Internal Server Error, status=500).Circular view path [hello]: would dispatch back to the current handler URL [/boot/hello] again. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, due to default view name generation.)

解决办法:给Controller加上@Controller和@ResponseBody

 

最近在学习,会持续更新。

以上是关于springboot能扫描到controller,页面访问不到的主要内容,如果未能解决你的问题,请参考以下文章

项目中遇到的问题00000--springboot扫描Controller问题

聚合项目,SpringBoot无法扫描子模块Controller问题

SpringBoot多模块项目子模块controller未加载问题

SpringBoot项目启动成功,访问路径提示404

springboot中swagger2没有使用任何注解(@Api)但是在该类上也能扫描到?

SpringBoot的@SpringBootApplication说明以及在启动类以外的包写@Controller