如何使用Maven摆脱交叉点

时间:2014-05-19 20:57:55

标签: java jsp maven junction

我的网页项目很少,共享大约95%的用户界面。目前我已经在我的Windows机器上设置了联结,所以当我在jsp文件中进行更改时,所有项目都会立即获得相同的更新。所以我不必更新每个文件。

这种方法有效,但是笨拙,因为我必须设置连接,这是很痛苦,容易破解。

如何使用maven解决此问题?我可以将整个UI(jsp)打包成.war并将其包含在每个项目中吗?这会有用吗?或者还有其他方法吗?

由于

1 个答案:

答案 0 :(得分:1)

maven-war-plugin将允许您创建一个包含所有Web文件的war文件,并将其用作依赖项目的overlay

假设我在像这样的项目中有一些ui代码

src
 |-main
    |-webapp
        |-jsp
        |  |-thing1.jsp
        |  |-thing2.jsp
        |-WEB-INF
           |-web.xml

并且它的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/xsd/maven-4.0.0.xsd">

  <modelVersion>4.0.0</modelVersion>
  <groupId>foo.bar.baz</groupId>
  <artifactId>big-messy-ui</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

在我的UI项目上进行maven安装后,我可以将它包含在这样的应用程序中:

<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>foo.bar.baz</groupId>
  <artifactId>some-app</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>

  <dependencies>
    <!-- include ui as an overlay -->
    <dependency>
      <groupId>foo.bar.baz</groupId>
      <artifactId>big-messy-ui</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <type>war</type>
    </dependency>
  </dependencies>

  <build>
    <finalName>SomeApp</finalName>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

现在SomeApp的war文件将包含本地项目中包含的所有内容,以及我导入的凌乱ui中的所有内容:

<强> SomeApp.war:

jsp
 |-thing1.jsp // from overlay
 |-thing2.jsp // from overlay
 |-plus anything from SomeApp's src/main/webapp/jsp
META-INF
 |-MANIFEST.MF
WEB-INF
 |-classes
 |   |-.class files from SomeApps's src/main/java
 |-web.xml (from SomeApp, the web.xml from the overlay is dropped)