摘要: mapper.xml文件中写了一条sql语句,报错了,报错信息是:Tag name expected 原因是xml中,"<" 和 "&" 是非法的,需要转换 阅读全文
posted @ 2019-05-30 15:38 一天到晚想名字 阅读(4153) 评论(0) 推荐(0) 编辑
摘要: 原博文地址:https://blog.csdn.net/baidu_38083619/article/details/82463058 总结:pageHelper是通过limit拼接sql实现分页的 低效率查询语句:select * from user where age = 10 limit 10 阅读全文
posted @ 2019-05-30 13:42 一天到晚想名字 阅读(5377) 评论(3) 推荐(0) 编辑
摘要: Ctrl + Alt + O 自动清除未使用的import包 阅读全文
posted @ 2019-05-29 17:33 一天到晚想名字 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 有三种方式 1、使用占位符#{0},#{1}....对应顺序就是参数的顺序 2、使用map封装入参 3、使用@Param 阅读全文
posted @ 2019-05-29 17:32 一天到晚想名字 阅读(2103) 评论(0) 推荐(0) 编辑
摘要: @PathVariable 将路径传递为入参 阅读全文
posted @ 2019-05-29 15:22 一天到晚想名字 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 本次项目使用了templates模板,在html中导入js和css,项目可以正常启动,但是访问请求后,在浏览器中就找不到js和css文件,如下是项目路径: 试了网上的很多方法,但是都没有成功,后面查看自己的pom文件,看到在resource标签中放行了html文件,就模仿着写了放行css和js等文件 阅读全文
posted @ 2019-05-29 15:13 一天到晚想名字 阅读(17174) 评论(0) 推荐(0) 编辑
摘要: 页面模板 application.properties 阅读全文
posted @ 2019-05-29 13:57 一天到晚想名字 阅读(386) 评论(0) 推荐(0) 编辑
摘要: pom文件 <dependencies> <dependency> <groupId>com.sbdubbo</groupId> <artifactId>provider-interface</artifactId> <version>1.0-SNAPSHOT</version> </depende 阅读全文
posted @ 2019-05-29 11:27 一天到晚想名字 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 记录几个不错的博文地址 面试题:https://blog.csdn.net/Y0Q2T57s/article/details/83005376 dubbo原理: https://blog.csdn.net/a347911/article/details/88324056 https://blog.c 阅读全文
posted @ 2019-05-29 09:37 一天到晚想名字 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 先记录一下在web.xml中的配置方式,写的满仔细的,链接地址:https://www.cnblogs.com/telwanggs/p/7484854.html 再记录下自己的配置 在DruidDataSource配置文件中添加如下代码 @Bean public ServletRegistratio 阅读全文
posted @ 2019-05-28 11:28 一天到晚想名字 阅读(704) 评论(0) 推荐(0) 编辑