上一页 1 ··· 71 72 73 74 75 76 77 78 79 ··· 82 下一页
该文被密码保护。 阅读全文
posted @ 2018-06-18 00:59 lshan 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 语法: <aop:config> <!-- 配置多个切点,&& || ! --> <aop:pointcut id="pc" expression="execution(public * com.wtas.*.service.*.*(..)) || execution(public * com.wt 阅读全文
posted @ 2018-06-16 17:38 lshan 阅读(688) 评论(0) 推荐(0) 编辑
摘要: 1. springMVc的拦截器 3.使用拦截器,检测每个方法的执行时间 4 过滤器 实现耗时 5. 切片 的使用 实现 耗时 阅读全文
posted @ 2018-06-16 16:58 lshan 阅读(216) 评论(0) 推荐(0) 编辑
摘要: @Data 注解引出的 lombok 小辣椒 今天在看代码的时候, 看到了这个注解, 之前都没有见过, 所以就查了下, 发现还是个不错的注解, 可以让代码更加简洁. 这个注解来自于 lombok,lombok 能够减少大量的模板代码,减少了在使用@Data 注解时, 需要导入lombok.Data, 阅读全文
posted @ 2018-06-15 12:19 lshan 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 问题:rror Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that us 解决方法: Error Code: 1175. You are using safe 阅读全文
posted @ 2018-06-15 11:38 lshan 阅读(4545) 评论(0) 推荐(0) 编辑
摘要: @Query注解的用法(Spring Data JPA) 参考文章:http://www.tuicool.com/articles/jQJBNv 1. 一个使用@Query注解的简单例子 @Query(value = "select name,author,price from Book b where b.price>?1 and b.price findByPriceRange... 阅读全文
posted @ 2018-06-15 10:32 lshan 阅读(4987) 评论(0) 推荐(0) 编辑
摘要: 对于json数组,使用$[*] 然后在获取节点. @Query(value = "select * from EDI.edi_history where json_contains(response_summary, ?1) and json_contains(response_summary, ? 阅读全文
posted @ 2018-06-14 20:48 lshan 阅读(1105) 评论(0) 推荐(0) 编辑
摘要: 从 MySQL 5.7.8 开始,MySQL 支持原生的 JSON 数据类型。 创建 JSON 类似 varchar,设置 JSON 主要将字段的 type 是 json, 不能设置长度,可以是 NULL 但不能有默认值。 mysql> CREATE TABLE lnmp ( `id` int(10 阅读全文
posted @ 2018-06-14 20:37 lshan 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 参考:http://www.lnmp.cn/mysql-57-new-features-json.html 方式一: 可以查到json中的Key:value 方式2: 仅仅通过包含: 只更新部分值: 创建表 CREATE TABLE t_json(id INT PRIMARY KEY, NAME V 阅读全文
posted @ 2018-06-14 19:28 lshan 阅读(6699) 评论(2) 推荐(0) 编辑
摘要: 1.第一种方法 使用JSON-JAVA提供的方法,之前一直使用json-lib提供的方法转json,后来发现了这个开源项目,觉得用起来很不错,并且可以修改XML.java中的parse方法满足自己的转换需要。 (1)首先去git下载所需的java文件,并导入项目 <dependency> <grou 阅读全文
posted @ 2018-06-14 11:18 lshan 阅读(2355) 评论(0) 推荐(0) 编辑
上一页 1 ··· 71 72 73 74 75 76 77 78 79 ··· 82 下一页