摘要: 1 下载地址:http://libevent.org/ 2、解压 tar zxvf libevent-2.0.21-stable.tar.gz 安装前请先安装 gcc yum install gcc 3、配置安装路径 cd libevent-2.0.21-stable ./configure -pr 阅读全文
posted @ 2019-03-12 11:43 Samuel-Leung 阅读(1591) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-03-08 17:31 Samuel-Leung 阅读(1) 评论(0) 推荐(0) 编辑
摘要: web应用中连接mysql数据库时控制台会出现这样的提示: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.2 阅读全文
posted @ 2019-03-08 14:26 Samuel-Leung 阅读(25139) 评论(0) 推荐(0) 编辑
摘要: ${pageContext.request.contextPath}是JSP取得绝对路径的方法,等价于<%=request.getContextPath()%> 。 也就是取出部署的应用程序名或者是当前的项目名称 比如我的项目名称是demo1在浏览器中输入为http://localhost:8080 阅读全文
posted @ 2019-03-08 10:12 Samuel-Leung 阅读(925) 评论(0) 推荐(0) 编辑
摘要: .删除本地时间并设置时区为上海 rm -rf /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 1 yum install ntp ntpdate 2 ntpdate -u ntp.sjtu.edu.cn 20 阅读全文
posted @ 2019-03-07 17:07 Samuel-Leung 阅读(1033) 评论(0) 推荐(0) 编辑
摘要: SEVERE: The required Server component failed to start so Tomcat is unable to start. org.apache.catalina.LifecycleException: Failed to start component 阅读全文
posted @ 2019-03-07 16:03 Samuel-Leung 阅读(1807) 评论(0) 推荐(0) 编辑
摘要: maven中央仓库地址:https://mvnrepository.com/ 2.解决办法: 这是由于缺少servlet-api.jar包,其实tomcat下有,但是在java build path把他加载过来,还是报这个错误,所以我们直接在pom.xml里面加入这个jar包即可,加入的代码如下: 阅读全文
posted @ 2019-03-07 16:00 Samuel-Leung 阅读(1927) 评论(0) 推荐(0) 编辑
摘要: 说明Jar包出现了问题。 解决方法 方法1、可通过右击项目名 -> Run as -> Maven test ,这时控制台会报哪个jar包出错。 (也可以打开DOS命令窗口,切换至项目目录,运行mvn test命令,和Eclipse的控制台输出信息一致) 方法2、如果方法1未出现任何错误信息,那么就 阅读全文
posted @ 2019-03-07 15:56 Samuel-Leung 阅读(754) 评论(0) 推荐(0) 编辑
摘要: 一般 我们在spring mvc的配置文件中 这样配置拦截器 <!--拦截器 --> <mvc:interceptors> <!--多个拦截器,顺序执行 --> <!-- 登陆认证拦截器 --> <mvc:interceptor> <mvc:mapping path="/**"/> <bean cl 阅读全文
posted @ 2019-03-07 15:41 Samuel-Leung 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1 官网下载地址:https://nodejs.org/en/download/ 2 下载的node-v10.15.2-linux-x64.tar.xz 上传到Linux系统后 因为安装的是纯净版的Linux系统 没有xz指令 需要yum安装下xz 指令为:yum install xz 3 安装完x 阅读全文
posted @ 2019-03-05 16:32 Samuel-Leung 阅读(135) 评论(0) 推荐(0) 编辑