Maven
pbyang5689
这个作者很懒,什么都没留下…
展开
-
maven管理的项目出现Error configuring application listener of class org.springframework.web.context.ContextL
意思是spring.jar这个包在发布的时候没有被放入war。如果是maven管理的项目,可以看看这个项目的部署参数里有没有加入所有maven的包。具体步骤如下:右键项目->Properties->Deployment Assembly,看看有没有Maven Dependencies 没有的话,点Add,选Java Build Path Entries ,拉到最下面,就可以看到Mav...转载 2018-06-02 20:50:26 · 1312 阅读 · 0 评论 -
Maven相关命令
1、添加jar包mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.1.0 -Dpackaging=jar -Dfile=C:/oracle/product/10.2.0/db_1/jdbc/lib/ojdbc14.jar原创 2018-06-04 22:30:26 · 119 阅读 · 0 评论 -
最全的maven的pom.xml文件详解
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0...转载 2018-06-19 20:02:08 · 170 阅读 · 0 评论