11 2018 档案
centos7 启动tomcat卡盾
摘要:vim $JAVA_HOME/jre/lib/security/java.security securerandom.source=file:/dev/random 改为 securerandom.source=file:/dev/urandom
阅读全文
mybatis递归查询
摘要:<!--mybatis递归查询--><resultMap id="recursionMenuMap" type="AgentMenu" extends="BaseResultMap"> <collection property="children" ofType="AgentMenu" column
阅读全文
mysql 统计某个月每天的数据
摘要:select SUM(order_money) as money,substr(t.pay_time,1,10) as time from pay_log t where t.pay_time like '2018-11%' group by substr(t.pay_time,1,10)
阅读全文
Swagger2基本注解使用
摘要:@Api:用在请求的类上,表示对类的说明 tags="说明该类的作用,可以在UI界面上看到的注解" value="该参数没什么意义,在UI界面上也看到,所以不需要配置" @ApiOperation:用在请求的方法上,说明方法的用途、作用 value="说明方法的用途、作用" notes="方法的备注
阅读全文
浙公网安备 33010602011771号