使用maven构建web项目实例

用maven构建web项目,首先要知道标准的目录结构,和一般的maven项目相同,源文件存放在src/main/java中,配置文件存在src/main/resources目录下。测试的代码放在src/test/java下,
对应的资源文件放在src/test/resources目录下。除了这些目录外。web项目还有一个src/main/webapp目录,该目录必须存在,且必须有一个web.xml文件,用于对整个web项目的配置。
如maven-web-demo这个项目实例。该项目的目录结构如下图所示:
使用maven构建web项目实例_第1张图片
为了web项目的部署,该项目的打包方式必须显示声明为war方式,因为maven默认的打包方式为jar。
还有pom文件中必须引入servlet,jsp的相关jar包,scope设置为provided,表示它们最终不会打包到war项目中。因为几乎所有的web容器都提供有javax.servlet相关的jar包,如果war包中重复出现,就会出现版本冲突的错误。


为了测试web项目,可以使用jetty插件,需要在pom文件中给出相应的配置。

<plugin>  
            <groupId>org.mortbay.jettygroupId>  
            <artifactId>maven-jetty-pluginartifactId>  
            <version>6.1.26version>  
            <configuration>  
            <scanIntervalSeconds>10scanIntervalSeconds>  
            <webAppConfig>  
            <contextPath>/testcontextPath>    
            webAppConfig>  
            configuration>  
        plugin>  

contextPath用于配置url的路径,该实例访问的url为http://host:port/test/.
为了能在命令行上启动jetty,并部署web项目,必须配置maven的settings.xml。添加如下语句即可。
org.mortbay.jetty

在命令行下输入mvn jetty:run启动并部署web项目。然后在浏览器中即可访问。

整个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.xsd">  
    <modelVersion>4.0.0modelVersion>  
    <groupId>com.juvenxu.mvnbook.accountgroupId>  
    <artifactId>maven-web-demoartifactId>  
    <version>0.0.1-SNAPSHOTversion>  
    <packaging>warpackaging>  
    <build>  
        <plugins>  
            <plugin>  
                <groupId>org.mortbay.jettygroupId>  
                <artifactId>maven-jetty-pluginartifactId>  
                <version>6.1.26version>  
                <configuration>  
                    <scanIntervalSeconds>10scanIntervalSeconds>  
                    <webAppConfig>  
                        <contextPath>/testcontextPath>    
                    webAppConfig>  
                configuration>  

            plugin>  
        plugins>  
    build>  
    <dependencies>  
        <dependency>  
            <groupId>javax.servletgroupId>  
            <artifactId>servlet-apiartifactId>  
            <version>2.4version>  
            <scope>providedscope>  
        dependency>  

        <dependency>  
            <groupId>javax.servletgroupId>  
            <artifactId>jsp-api artifactId>  
            <version>2.0version>  
            <scope>providedscope>  
        dependency>  
        <dependency>  
            <groupId>  org.springframework groupId>  
            <artifactId>spring-webartifactId>  
            <version>2.5.6version>  
        dependency>  

    dependencies>  
project>  

除了用jetty测试,还可以使用cargo进行自动化部署,如部署到本地的web容器中,主要是在pom文件中进行配置。内容如下:

<plugin>  
                <groupId>org.codehaus.cargogroupId>  
                <artifactId>cargo-maven2-pluginartifactId>  
                <version>1.0version>  
                <configuration>  
                    <container>  
                        <containerId>Tomcat6xcontainerId>  
                        <home>D:\software installs\Tomcat6.0home>  
                    container>  
                    <configuration>  
                        <type>standalonetype>  
                        <home>${project.build.directory}/Tomcat6xhome>  
                        <properties>  
                        <cargo.servlet.port>8080cargo.servlet.port>  
                        properties>  
                    configuration>  
                configuration>  
            plugin>  

你可能感兴趣的:(JAVA技术)