一.变量列表 二.实验 系统:centos 7 1.特殊变量 [root@~_~ day2]# cat p.sh #!/bin/bashecho '$0:'$0echo '$*:'$*echo '$@:'$@echo '$#:'$#echo '$1$2$3:' $1$2$3 [root@~_~ day2]# sh p.sh a b c d $0:p.sh$*:a b c d$@:a b c d$#:4$1$2$3: abc 2.$$ [root@~~ day2]# echo $$1974 3.s…
1.parameterType(输入类型) 1.1 传递简单类型 使用#{}占位符,或者${}进行sql拼接. <select id="caseCountByQueryCaseVo" parameterType="String" resultType="Integer"> select count(1) total from testcase where systemName like "%"#{systemNa…