此博客有文章307篇,评论279条,分类8个,标签861个
-
Google地图实现路线规划(JavaScript)
-
Google地图经纬度纠偏
2017-05-17 Google地图经纬度纠偏:通常在项目中,GPS经纬度不会直接使用,需要进行一些经纬度的纠偏才可以在对应的地图上使用。/** * gps纠偏算法,适用于google,高德体系的地图 * @author Administrator */ public class GpsCorrect { final static double pi = 3.14159265358979324; final static double a = 6378245.0; final static double ee = 0.0066934216229659432... -
CSS3实现元素旋转
2017-05-16 CSS3实现旋转,下面是CSS3实现 图片img、块元素div、字体font 等旋转特效的代码:.spinner{ -webkit-animation:spinner 2s infinite linear; animation: spinner 2s infinite linear; } @-webkit-keyframes spinner{ 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359... -
小星星吉他谱C调简单版
-
Linux中unZip/Zip的安装及使用
2017-05-12 Linux系统没有自带的压缩解压工具;需要我们自己安装;当用到zip或者unzip如果没有安装就会出现unzip: Command Not Found 或 zip: Command Not Found;出现这个是因为没有安装unzip和zip。1、yum安装:[root@WCUfJM105714 /]# yum install -y unzip zip2、apt-get安装:[root@WCUfJM105714 /]# apt-get install zip以上是两种安装unzip/zip的方式。下面是一些具体的实例操作命令演示:1、把/home目录下面的mydata目录压缩为mydat... -
部署Maven项目ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
2017-05-12 以前的一个老项目中的一个模块近期在拆分成为一个独立项目时,出现了java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 的问题。项目配置个人感觉没有什么问题。严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener java.lang.ClassNotFoundException: org.springframewo... -
五一假日(第一天)游红河谷
-
Redis停止服务时(Error) NOAUTH Authentication required
-
Windows系统手动安装Tomcat服务
2017-04-18 Windows 系统安装Tomcat,比较便捷的是setup程序去安装设置。做为习惯于直接下载ZIP包的人来说,就需要简单的设置一下咯。首先,去tomcat官方网站下载tomcat。地址:http://tomcat.apache.org/download-60.cgi32位:http://apache.fayea.com/tomcat/tomcat-6/v6.0.53/bin/apache-tomcat-6.0.53-windows-x86.zip64位:http://apache.fayea.com/tomcat/tomcat-6/v6.0.53/bin/apache-tomcat-6... -
Navicat for Oracle 连接 Oracle 11g
2017-04-13 亲测完全OK可用。Navicat for Oracle 下载:https://www.navicat.com.cn/download然后还需要Oracle 的二个文件 地址为 http://www.oracle.com/technetwork/topics/winsoft-085727.htmlinstantclient-basic-nt-12.1.0.2.0.zipinstantclient-sqlplus-nt-12.1.0.2.0.zip这里我百度云有 链接: http://pan.baidu.com/s/1bpH2TTd 密码: f31q这里我直接把 instantclient-... -
IDEA Properties中文unicode转码问题
-
在IntelliJ IDEA中org.apache.catalina.util.DefaultAnnotationProcessor的解决方案
2017-04-06 以前开发一直用Eclipse,最近这段时间,为了能和大家一起装B,就将项目导入到IntelliJ IDEA开发。在启动项目后运行时,出现了一个异常:2017-4-6 11:32:07 org.apache.catalina.core.StandardWrapperValve invoke 严重: Servlet.service() for servlet jsp threw exception java.lang.ClassCastException: org.apache.catalina.util.DefaultAnnotationProcessor cannot be cast...