SpringBoot中出现的错误

Posted 呼呼呼呼呼65

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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中出现的错误的主要内容,如果未能解决你的问题,请参考以下文章

手把手教你用VUE开发后台管理系统:搭建SpringBoo 2.xt环境

Spring Boot学习——Spring Boot简介

大数据-kafka学习——集成SpringBoot

Swagger2 常用使用 及 SpringBoo 整合 Swagger2

Spring Boot 中的文件上传:上传、验证和异常处理

springBoot综合开发