摘要: 在pom.xml中配置以下内容: <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</ 阅读全文
posted @ 2021-08-16 15:33 XQ-Yang 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 近期练手了一个整合spring+springmvc+mybatis的CRUD小项目,其中的搜索功能需要用到sql的模糊查询,根据以往传参给sql语句的方式,我就写成了 where bookName like '%#{name}%' 下面介绍几种写法: 写法一:使用CONCAT连接 where boo 阅读全文
posted @ 2021-08-16 13:43 XQ-Yang 阅读(148) 评论(0) 推荐(0) 编辑