springboot
qq_34838790
这个作者很懒,什么都没留下…
展开
-
SpringBoot项目跳转页面时,跳转的界面是返回的路径的字段值,而不是我想要跳转的页面
SpringBoot项目跳转页面时,跳转的界面是返回的路径,而不是我想要跳转的页面原因是Controller类使用了@RestController而不是@Controller,改回@Controller就行了。原创 2021-04-22 17:59:36 · 288 阅读 · 0 评论 -
Field ‘login_name‘ doesn‘t have a default value
Field ‘login_name’ doesn’t have a default value问题出现的原因:数据库表设计,将字段设计为not null造成的,把not null去掉即可。原创 2020-11-21 22:39:25 · 452 阅读 · 0 评论 -
[THYMELEAF][http-nio-0.0.0.0-8080-exec-2] Exception processing template “registess“: Error resolving
问题:[THYMELEAF][http-nio-0.0.0.0-8080-exec-2] Exception processing template “registess”: Error resolving template [registess], template might not exist or might not be accessible by any of the configured Template Resolvers解决方案:问题出现在Controller类中,方法没加@Resp原创 2020-11-18 21:21:12 · 1594 阅读 · 0 评论 -
Consider defining a bean of type ‘com.alipay.api.AlipayClient‘ in your configuration.
问题:解决:1)、把没用的import删除。2)、注释掉有关的没用的代码。如下图:原创 2020-07-27 17:43:41 · 1298 阅读 · 3 评论 -
Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST‘ not
问题:Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method ‘POST’ not supported]在yml中开启配置 spring: mvc: hiddenmethod: filter: enabled: true转载 2020-07-19 15:58:18 · 13408 阅读 · 0 评论 -
部署springboot项目,前端页面可以显示,但是服务器的图片不能显示,报404
找了几天,在朋友的帮助下发现,是配置文件出了问题,如图:原创 2020-07-06 09:56:04 · 1405 阅读 · 0 评论