SpringBoot
wang0112233
还在努力搬砖阶段
展开
-
把vue项目放到spring boot 下运行
把vue 项目打包成dist包npm run build 生成dist包在springboot 项目中resource文件下创建static 文件把dist 分解的文件复制到static 下在application.properties 中配置路径spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,\ classpath:/static/,classp...原创 2020-07-23 19:13:07 · 6781 阅读 · 1 评论 -
Spring Boot(一) Eclipse创建一个Spring Boot项目,Spring Boot修改端口号
1需要下载tst也可以自己导入2创建一个FIle-new -other springboot springboot改tomcat端口3.controller测试在java的Application中run as SpringBoot App原创 2018-03-30 14:29:42 · 1463 阅读 · 0 评论 -
Could not autowire. No beans of 'Mapper' type found.
首先你要判断是的是否注入进来了一种是我没有注入进来报错(运行报错)第二种是注入进来了,可以正常运行,但是这个红色的提示看着看着不爽 方法:第一种是包扫描的问题配置文件中没有扫描到xml,仔细查看sprignboot的Application中没有扫描dao加上注解:@MapperScan("com.xxx.dao") 第二种可以修改警告的范围(...原创 2018-11-24 09:32:56 · 20600 阅读 · 5 评论