摘要:
select concat(left('陈小姐',1),'先生') 阅读全文
posted @ 2020-05-08 10:08
Nice托米
阅读(926)
评论(0)
推荐(0)
摘要:
<select id="selectMapTest" parameterType="java.util.HashMap" resultMap="BaseResultMap"> <foreach collection="map1" index="key" item="ent" separator="u 阅读全文
posted @ 2020-05-08 10:04
Nice托米
阅读(767)
评论(0)
推荐(0)
摘要:
java后台: //等分的数量 int pageSize = 2; //list集合的长度 int total = splist.size(); //等分循环的次数 int pageCount = total % pageSize == 0 ? total / pageSize : total / 阅读全文
posted @ 2020-05-08 10:02
Nice托米
阅读(715)
评论(0)
推荐(0)
摘要:
在cmd命令窗口: 1.输入 netstat -ano|findstr 8005,回车,显示在最后面的数字就是我们tomcat进程的端口号。 2.输入 taskkill /pid xxxx /f xxxx就是我们的端口号,回车,终止! 终止不了:则输入 tasklist | findstr 进程号 阅读全文
posted @ 2020-05-08 09:55
Nice托米
阅读(428)
评论(0)
推荐(0)