摘要: .删除本地时间并设置时区为上海 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) 编辑