学习总结
云欲动风则静
这个作者很懒,什么都没留下…
展开
-
sql 根据经纬度查询门店地理位置
SELECT s.id , s.name , s.lng , s.lat , ROUND( 6378.138 * 2 * ASIN( SQRT( POW( SIN( ( @targetLat * PI() / 180 - s.lat * PI() / 180 ) / 2 ) , 2 ) + C.原创 2020-11-03 18:03:36 · 916 阅读 · 0 评论 -
新增微信临时素材
public JSONObject UploadMeida(String fileType, String filePath, String appId) throws Exception { //返回结果 String result = null; File file = new File(filePath); if (!file.exists() || !file.isFile()) { throw new IOE.原创 2020-10-12 14:12:24 · 244 阅读 · 0 评论 -
mysql 指定参数排序
简单记录下指定参数排序mysql语法有一批员工数据employee_status 字典值为 (试用:1661 正式:1662 离职:1663)要求:优先展示正式员工 其次使用 最后离职SELECT employee_status FROM staff ORDER BY field(employee_status,'1662') desc,employee_status asc;...原创 2020-07-14 15:50:42 · 509 阅读 · 0 评论 -
自己在springCloud使用的一个线程池
@Configuration@EnableAsyncpublic class ExecutorConfig { /** * 线程池维护线程的最少数量 */ private int corePoolSize = 5; /** * 线程池维护线程的最大数量 */ private int maxPoolSize = 20; ...原创 2019-12-03 15:48:51 · 1349 阅读 · 0 评论 -
使用git服务器结合Config搭建分布式配置中心(二)
上一篇讲述了如何搭建config服务端,这篇开始搭建client端的配置1、依然是新建一个springboot项目2、加入对应的依赖文件 <!--spring config配置--> <dependency> <groupId>org.springframework.cloud</grou...原创 2019-07-30 15:09:22 · 190 阅读 · 0 评论 -
使用git服务器结合Config搭建分布式配置中心(一)
微服务下的分布式配置中心最终实现理念:一个基于http协议的远程配置实现方式。通过统一的配置管理服务器进行配置管理,客户端通过https协议主动的拉取服务的的配置信息,完成配置获取。说人话:统一管理配置, 快速切换各个环境的配置官方文档:https://cloud.spring.io/spring-cloud-static/Finchley.SR1/multi/multi_spring-c...原创 2019-07-29 16:11:21 · 517 阅读 · 0 评论 -
java Date 改变时分秒
Date now = new Date(); Calendar cal1 = Calendar.getInstance(); cal1.setTime(now); // 将时分秒,毫秒域清零 cal1.set(Calendar.HOUR_OF_DAY, 23); cal1.set(Calendar.M...原创 2019-07-09 13:11:05 · 8111 阅读 · 0 评论 -
Mysql 查询当前时间24小时内的数据
记录一下mysql查询24小时内的sql语句where time >=(NOW() - interval 24 hour)原创 2018-11-30 13:46:39 · 29464 阅读 · 6 评论 -
解决Springboot与前端VUE整合 出现的跨域访问报错问题
由于第一次和VUE前端框架整合,出现跨域访问异常 导致获取不到后台传过来的值只需要在配置中加入如下代码,即可解决!/** * Created by LWM on 2018/9/12. * 处理跨域问题 */@Configurationpublic class CorsConfig { @Bean public WebMvcConfigurer corsConfi...原创 2018-09-12 15:15:40 · 3579 阅读 · 0 评论