我已经配置了Maven Multimodule项目,当我在做什么时
mvn clean install
为父项目中的两个模块创建War和Jar文件,当我在Tomcat6中部署war文件时,它正常工作。
但是当我试图从eclipse中运行web模块时。
右键单击项目 - >在服务器上运行 - >选择Tomcat作为服务器
然后Project不工作。
Web模块依赖于java项目,它也是 Multimodule 项目的一部分,因此我将此(Java)项目的依赖项添加到我的Web项目中,但是在web项目中不包含Java构建路径这种依赖。任何人都知道如何用eclipse解决这个问题? 正如我在eclipse中看到的那样
workspace_maven.metadata.plugins \ org.eclipse.wst.server.core \ TMP0 \ wtpwebapps \网络\ WEB-INF \ lib中
我没有在这里找到Java项目。但是当我在做什么时
mvn clean install
并在Tomcat中部署包含我的Java Project jar文件的 / WEB-INF / lib 目录。 我的Web模块Pom.xml文件......
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.test</groupId>
<artifactId>demo_parent</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.csdc</groupId>
<artifactId>demo-web</artifactId>
<version>7.0.0</version>
<packaging>war</packaging>
<name> web Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.test</groupId>
<artifactId>core-java</artifactId>
<version>5.0.0</version>
</dependency>
</dependencies>
<build>
<finalName>amanda-web</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
<wtpversion>2.0</wtpversion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat6-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</build>
</project>
我的父pom.xml文件......
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.test</groupId>
<artifactId>demo_parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>demo-web</module>
<module>core-java</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<properties>
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
</properties>
</project>
* 注意: - *我已从父pom.xml中删除了存储库和依赖项,以使pom变短。
答案 0 :(得分:-1)
您应该需要apache maven plugin
目标应该是tomcat:run
它会在你的目标文件夹中下载新的tomcat实例,并在那个tomcat上部署你的战争。
您可以设置该tomcat的所有设置,也可以参考插件的configuration
标记中的设置XML。
您可以将其作为调试模式运行,并且可以即时查看所有更改。 (仅Java,JSP文件。没有XML和属性)
为了您的帮助我正在添加一个代码,可以帮助您在安装Web模块时运行tomcat服务器并部署WAR。
应用程序将安装在tomcat 5和根上下文中。
您可以通过网址访问它:http://localhost:8080/
<project>
...
<build>
<finalName>myWAR</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<configuration>
<path>/</path>
</configuration>
<executions>
<execution>
<id>RUN_TOMCAT</id>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<inherited>false</inherited>
<configuration>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>