11 2018 档案
centos7 启动tomcat卡盾
摘要:vim $JAVA_HOME/jre/lib/security/java.security securerandom.source=file:/dev/random 改为 securerandom.source=file:/dev/urandom 阅读全文
posted @ 2018-11-24 11:31 Superb1995 阅读(107) 评论(0) 推荐(0)
mybatis递归查询
摘要:<!--mybatis递归查询--><resultMap id="recursionMenuMap" type="AgentMenu" extends="BaseResultMap"> <collection property="children" ofType="AgentMenu" column 阅读全文
posted @ 2018-11-08 16:50 Superb1995 阅读(893) 评论(0) 推荐(0)
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) 阅读全文
posted @ 2018-11-07 10:56 Superb1995 阅读(1401) 评论(0) 推荐(0)
Swagger2基本注解使用
摘要:@Api:用在请求的类上,表示对类的说明 tags="说明该类的作用,可以在UI界面上看到的注解" value="该参数没什么意义,在UI界面上也看到,所以不需要配置" @ApiOperation:用在请求的方法上,说明方法的用途、作用 value="说明方法的用途、作用" notes="方法的备注 阅读全文
posted @ 2018-11-02 17:52 Superb1995 阅读(234) 评论(0) 推荐(0)