springboot
皮卡丘踢球
这个作者很懒,什么都没留下…
展开
-
springboot+thymeleaf项目本地运行正常,打包部署服务器后访问页面500错误
项目背景:springboot+thymeleaf 本地运行正常,打包部署服务器后访问页面500错误 接口正常 报错页面如下: Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Mon Jan 13 18:58:...原创 2020-01-13 19:20:31 · 3225 阅读 · 2 评论 -
springboot添加文件虚拟路径(指定本地磁盘存放附件)
所有开发项目中,把附件存放于项目目录下,日后运维工作简直要人命. 所以使用虚拟路径就能很好的解决本问题: import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; i...原创 2019-07-12 15:28:16 · 2830 阅读 · 0 评论 -
传统SSM项目改为springboot项目jsp页面无法访问
近期需要把公司旧的权限系统进行升级至springboot。期间踩的一些坑记录下: 启动后报无法找到*.xml 解决方法: 先查看target中是否有xml 没有的话,在pom.xml中build中添加 <!--解决Intellij构建项目时,target/classes目录下不存在mapper.xml文件--> <resources> ...原创 2019-08-05 11:31:38 · 928 阅读 · 0 评论