摘要:
1.在IDEA中添加 jar 2. 添加不同maven 依赖 <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> </dependency> <dependency> 阅读全文
摘要:
首先是版本问题 1.springboot版本是2.0以下的使用 pom中 使用: <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</art 阅读全文
摘要:
private double getConsumeRateAB(Long node_consumers, Long node_persons) { BigDecimal b1 = new BigDecimal(node_consumers); BigDecimal b2 = new BigDecim 阅读全文
摘要:
类型转换 保留两位小数 cast(SUM(IFNULL(r.value_2,0)) as decimal(10, 2)) 阅读全文
摘要:
Maps.newHashMap 和 new HashMap的区别 区别: (1)Map<String, Object> result = new HashMap<String,Object>(); 这种是java原生API写法,需要你手动加泛型。 (2)Map<String, Object> res 阅读全文
摘要:
之前项目用到的一些时间的处理 public static final SimpleDateFormat DATE_FORMAT_DATE = new SimpleDateFormat("yyyy-MM-dd"); public static final SimpleDateFormat DATE_F 阅读全文
摘要:
自己对时间操作的时候一些方法 public static final SimpleDateFormat DATETIME_FORMAT_DATE = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); public static final SimpleDate 阅读全文
摘要:
1.springboot 定时执行某个方法 2.springboot 通过接口生成 某个调度时间 定时执行 方法1: 网上好多案例 不做详细阐述 方法2:业务场景:用户配置一个活动,然后根据配置活动的时间定时推送消息。 1.配置一个每天凌晨的定时任务,去数据库查询数据,将符合条件的 cron表达式放 阅读全文
摘要:
db.getCollection('wx_group_member_record_2020-06-21').find({"is_active": "N"}).forEach( function(item){ db.getCollection('wx_group_member_record_2020- 阅读全文
摘要:
Calendar calendar = Calendar.getInstance();calendar.setTime(filter_update_time);calendar.set(Calendar.HOUR_OF_DAY, 23);calendar.set(Calendar.MINUTE, 5 阅读全文