摘要: springboot工程创建 直接访问网址:https://start.spring.io/ ,可以创建一个springboot工程。 1,编写简单的contooler测试: 新建一个HelloController 访问网址:localhost:8080/hello/hello,就可以看到效果。 @ 阅读全文
posted @ 2018-07-30 15:45 戈壁飞翔 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 问题描述; userMapper.xml中配置的用户更新动态sql如下 报错如下; 解决方法: 去掉update中的resultType属性。 个人感觉报错提示很迷糊。 阅读全文
posted @ 2018-07-28 16:50 戈壁飞翔 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 问题:将本地的一个maven项目导入eclipse时,有的微服务的项目导入后,项目是文件夹的形式,运行时提示“editor does not contain a main type” 错误 现象如图: 原因分析: Java程序没有在被编译的路径下,导致eclipse不能编译该类。 解决方法: 1,网 阅读全文
posted @ 2017-10-10 09:32 戈壁飞翔 阅读(4927) 评论(0) 推荐(0) 编辑
摘要: maven默认下载的目录是 Default: ${user.home}/.m2/repository,现在将该位置的目录修改为 d:/.m2/repository 1,修改maven安装目录 D:\apache-maven-3.5.0-bin\apache-maven-3.5.0\conf 中set 阅读全文
posted @ 2017-10-10 09:29 戈壁飞翔 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 这几天springboot相关的知识,下面就对自己这几天的学习情况做下总结。 springboot应用的结构 src --main: java:存放源代码 resources: templates:存放html文件,css文件 application.properties 存放配置信息 (放在res 阅读全文
posted @ 2017-09-25 15:34 戈壁飞翔 阅读(1292) 评论(0) 推荐(0) 编辑
摘要: 之前tomcat总是在重新启动项目的时候,提示如下错误 Several ports (8080, 8009) required by Tomcat v6.0 Server at localhost are already in use.The server may already be runnin 阅读全文
posted @ 2017-04-08 17:41 戈壁飞翔 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 练习项目中 request.setAttribute("maxpage", maxpage); request.setAttribute("page", pageNo); 报struts2空指针异常,request取值为空。添加 this.request = ServletActionContext 阅读全文
posted @ 2017-03-26 17:39 戈壁飞翔 阅读(317) 评论(0) 推荐(0) 编辑