随笔分类 - SSM
摘要:maven 环境变量配置 Maven下载 下载地址:http://maven.apache.org/download.cgi apache-maven路径(版本是会不断更新的) 系统环境变量配置HOME_MAVEN 电脑——>属性——>高级系统设置——>环境变量 1新建环境变量(用户变量)HOME_
阅读全文
摘要:MyBatis 常用写法 1、forEach 循环 forEach 元素的属性主要有 item, idnex, collection, open, separator, close。 collection:传入的 List 或 Array 或自己封装的 Map。 item:集合中元素迭代时的别名。
阅读全文
摘要:第一种写法(1): 原符号 < <= > >= & ' "替换符号 < <= > >= & ' "例如:sql如下:create_date_time >= #{startTime} and create_date_time <= #{e
阅读全文
摘要:<select id="findUsersByUserName2" resultType="java.util.Map" parameterType="Params"> 2 SELECT 3 id as uid, 4 username as uname, 5 password as pwd, 6 a
阅读全文
摘要:<select id="findUsersByUserName2" resultType="java.util.Map" parameterType="Params"> SELECT id as uid, username as uname, password as pwd, account as
阅读全文