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