Maven安装本地Oraclejar包
C:\Users\P1323388>mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=12.1.0.2.0 -Dpackaging=jar -Dfile=D:\app\root\product\12.1.0\dbhome_1\jdbc\lib\ojdbc6.jar
1.Jboss部署
Module版本4.0不支持Jboss7.1
修改Dynamic Web Module---》需要修改当前工作空间下面的org.eclipse.wst.common.
project.facet.core.xml文件
[怎么查看当前eclipse所打开的工作空间?eclipse->file->switch workspace->other]
Then :找到D:\eclipseProjects\PRIMAS\.settings下面的org.eclipse.wst.common.project.facet.core.xml的jst.web—》改为3.0
Jboss无法publish:
删除workspace里面的.metadata,重启eclipse【慎重!!!】
添加servlet依赖
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>