开发
矮肥圆VV
这个作者很懒,什么都没留下…
展开
-
关于MyEclipse中启动Tomcat发生错误:Publishing to Tomcat V8.0 at localhost has encountered a problem.
一开始在MyEclipse2015上配置了Tomcat8.0,是可以用的,但是今天下午突然启动的时候出错,已经解决了忘记截错误提示的图提示内容 Publishing failedCould not publish to the server.There were issues during deployment to server Tomcat v7.0 Server at l...原创 2017-12-21 16:00:07 · 16444 阅读 · 3 评论 -
java使用Timer类实现操作超时报警
public Map getmanyMdatabystationanddate(@RequestBody Map<String,Object> params){ Timer timer = new Timer(); Map res =new HashMap<>(); timer.schedule(new TimerTask(...原创 2018-12-05 17:28:50 · 2128 阅读 · 0 评论 -
经纬度计算的普通球面距离与精度更高的椭球距离
计算给定两个经纬度点(x1,y1)与(x2,y2)的距离,有很多种,但是由于投影方式使用的不同,以及地球是一个椭球体,导致计算经纬度点之间距离的误差也不一样,下面代码中给出了两种方式:from math import radians,cos,sin,asin,sqrt,pi,atan,tan,atan2BLANK = ""ZERO = "0"EARTH_RADIUS = 6378.1...原创 2018-10-24 20:13:06 · 2213 阅读 · 3 评论 -
List<Map>排序问题
Collections.sort(innerTrackList, new Comparator<Map>() { public int compare(Map o1, Map o2) { String map1value =o1.get("time")+""; String map2value...原创 2018-10-29 18:55:26 · 525 阅读 · 0 评论 -
javax.persistence.TransactionRequiredException: Executing an update/delete query
在springboot项目中使用jpa的时候,因为业务需求注册的时候同时需要插入role和permission相关信息,无法直接使用封装好的save()方法,所以需要在dao层中使用@Query写自定义查询。当涉及到查询的语句中,可以直接写如下,正常。 @Query(value = "select DISTINCT * from user u where u.user_name ...原创 2018-10-13 20:33:38 · 26116 阅读 · 0 评论 -
关于vue发送HTTP请求中出现问题Uncaught TypeError: Cannot read property 'jsonp' of undefined
最近在看跨域的问题,今天在为vue发送HTTP请求的时候,发现jsonp一直undefined,但是拎出来直接在html文件中运行又是可以的,经过检查,发现是因为对vue项目整体结构的不熟悉,由于网上也没有太多这个问题的信息,所以记录下来。Uncaught TypeError: Cannot read property 'jsonp' of undefined其实主要就是在main.js中...原创 2018-07-29 19:32:25 · 16228 阅读 · 1 评论 -
BUILD FAILED in 59s (node:9604) [DEP0018] DeprecationWarning: Unhandled promise rejections are depre
关于运行ionic碰到的问题BUILD FAILED in 59s(node:9604) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the...原创 2018-02-06 19:08:48 · 10952 阅读 · 0 评论 -
IDEA启动Tomcat时控制台报错原因之一,导致Tomcat启动不了:ERROR - Context initialization failed
Error creating bean with name 'orderItemServiceImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field:原创 2018-01-04 17:26:32 · 3305 阅读 · 1 评论 -
研一上半年总结
1.今天组会一个师兄分享了他的路径,想到这个,我也应该做一个总结了。2.自从暑假6月份过来,到现在12.3号,也有半年了,除了两个项目的学习课程上也学了挺多的内容了3.对于第一个环境噪声项目: 使用的是前后端分离的部分,前端使用的是vue框架;后端是springboot框架Vue:因为负责的是后端部分,当时项目在需求阶段就看了一部分的vue,这个前端框架相对GitH...原创 2018-12-03 22:04:01 · 700 阅读 · 0 评论