摘要:
public enum EnumWithMethod { VALUE_A { @Override public String enumMethod(String s) { return s + "-A"; } }, VALUE_B{ @Override public String enumMetho 阅读全文
摘要:
使用注解的方式可能要比使用配置文件要慢,因为注解要调用反射,贼耗时,但是你不用再去在配置文件上费心。实际上,在实际工作时,大部分都是使用注解的方式。 什么是AOPAOP就是通过动态为项目中某些类在运行过程中动态创建代理对象,在对象中完成附加功能,保证在处理业务时更加专注于自己的业务逻辑开发。有以下几 阅读全文
摘要:
public static void main(String[] args) { List<String> fields = new ArrayList<>(); fields.add("age"); fields.add("name"); fields.add("cardList.cardNumb 阅读全文
摘要:
版权声明:本文为CSDN博主「摸鱼佬」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.csdn.net/weixin_39792935/article/details/85703570 实现对象克隆两种方式: 1). 实现Clon 阅读全文
摘要:
List<Map<String, Object>> list = entityCurdDao.searchAdvanced(domainField.getFields(), queryParam.getCriteria(), queryParam.getSort(), queryParam.getO 阅读全文
摘要:
SELECT count(1) FROM a_alarmconfig WHERE userId > 0 SELECT 1 FROM a_alarmconfig WHERE userId > 0 LIMIT 1 阅读全文
摘要:
java 实现逻辑表达式解析 老黄瓜001 于 2020-07-28 17:16:30 发布 这里的字符串分割使用的默认空格分隔,使用时需要特别注意模板格式。 废话不多说,直接上代码 package com.lunua.parse; import com.alibaba.fastjson.JSONP 阅读全文
摘要:
1、下载JsonView扩展程序压缩包下载地址:https://github.com/gildas-lormeau/JSONView-for-Chrome 2、解压这个压缩包 3、打开谷歌浏览器的扩展程序界面 4、加载JsonView扩展程序选中开发者模式,点击【加载正在开发的扩展程序…】 有的时候 阅读全文
摘要:
批量插入并返回批量id(由于JDBCTemplate不支持批量插入后返回批量id,所以此处使用jdbc原生的方法实现此功能) public List<Integer> addProduct(List<ProductBean> expList) throws SQLException { final 阅读全文
摘要:
import org.springframework.dao.DataAccessException; import org.springframework.jdbc.core.*; import org.springframework.jdbc.support.JdbcUtils; import 阅读全文