zoukankan      html  css  js  c++  java
  • 搭建一个Maven的ssh2项目步骤

    1.cmd 转至 欲生成项目的目录执行:mvn archetype:create -DgroupId=org.jxsme.hj -DartifactId=sshinfo -DarchetypeArtifactId=maven-archetype-webapp 

    生成一个web项目 

    2.设置代理服务器地址:http://192.168.2.196:8081 

    3.在项目目录下pom.xml文件中添加struts2,spring,hibernate,servlet,jsp,junit包引入 
    <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.0</modelVersion> 
      <groupId>org.jxsme.hj</groupId> 
      <artifactId>sshinfo</artifactId> 
      <packaging>war</packaging> 
      <version>1.0-SNAPSHOT</version> 
      <name>sshinfo Maven Webapp</name> 
      <url>http://maven.apache.org</url> 
      <dependencies> 
      <!-- Junit --> 
    <dependency> 
    <groupId>junit</groupId> 
    <artifactId>junit</artifactId> 
    <version>3.8.1</version> 
    <scope>test</scope> 
    </dependency> 

    <!--  Struts 2 --> 
    <dependency> 
                <groupId>org.apache.struts</groupId> 
                <artifactId>struts2-core</artifactId> 
                <version>2.0.11.2</version> 
            </dependency> 
            <dependency> 
                <groupId>org.apache.struts</groupId> 
                <artifactId>struts2-sitemesh-plugin</artifactId> 
                <version>2.0.11.2</version> 
            </dependency> 
            <dependency> 
                <groupId>org.apache.struts</groupId> 
                <artifactId>struts2-spring-plugin</artifactId> 
                <version>2.0.11.2</version> 
            </dependency> 

    <!-- Servlet & Jsp --> 
    <dependency> 
    <groupId>javax.servlet</groupId> 
    <artifactId>servlet-api</artifactId> 
    <version>2.4</version> 
    <scope>provided</scope> 
    </dependency> 
    <dependency> 
    <groupId>javax.servlet</groupId> 
    <artifactId>jsp-api</artifactId> 
    <version>2.0</version> 
    <scope>provided</scope> 
    </dependency> 

    <!-- Jakarta Commons --> 
    <dependency> 
    <groupId>commons-fileupload</groupId> 
    <artifactId>commons-fileupload</artifactId> 
    <version>1.1.1</version> 
    </dependency> 

    <dependency> 
    <groupId>commons-dbcp</groupId> 
    <artifactId>commons-dbcp</artifactId> 
    <version>1.2.2</version> 
    </dependency> 
    <!-- spring 2.5 --> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-hibernate3</artifactId> 
    <version>2.0.8</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-orm</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-core</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-beans</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-context</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-jdbc</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-test</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-context-support</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-aop</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <dependency> 
    <groupId>org.springframework</groupId> 
    <artifactId>spring-aspects</artifactId> 
    <version>2.5.5</version> 
    </dependency> 
    <!-- mysql--> 
    <dependency> 
    <groupId>mysql</groupId> 
    <artifactId>mysql-connector-java</artifactId> 
    <version>5.1.6</version> 
    </dependency> 
    <dependency> 
    <groupId>proxool</groupId> 
    <artifactId>proxool</artifactId> 
    <version>0.8.3</version> 
    </dependency> 
            <!-- hibernate 3.3--> 
    <dependency> 
    <groupId>org.hibernate</groupId> 
    <artifactId>hibernate-core</artifactId> 
    <version>3.3.1.GA</version> 
    </dependency> 
    <dependency> 
    <groupId>org.hibernate</groupId> 
    <artifactId>hibernate-annotations</artifactId> 
    <version>3.3.0.ga</version> 
    </dependency> 
      </dependencies> 
      <build> 
        <finalName>sshinfo</finalName> 
    <plugins> 
         <plugin>  
                    <groupId>org.apache.maven.plugins</groupId>  
                    <artifactId>maven-compiler-plugin</artifactId>  
                    <configuration>  
                        <source>1.5</source>  
                        <target>1.5</target>  
                        <encoding>utf-8</encoding>  
                    </configuration>  
                </plugin>  
    </plugins> 
      </build> 
    </project> 
    4,执行mvn eclipse:eclipse 生成eclipse 项目 

    打开eclipse导入工程,添加src/main/java目录,src/test/main,src/test/resources源文件目录 

    编写测试文件sayHello,servlet 添加相应的测试,并生成war 文件..将该文件放至tomcat中进行测试

    6.添加struts支持action测试

    7.applicationContent.xml中配置hibernate及事务代理

    8.连接数据库,生成hbm.xml,pojo文件 

    9.编写 dao.service,serviceimpl等到类文件.... 

    10.编写junit Dao测试

    11.编写 struts2.Actioin 及测试类

    12.执行编译打包,,mvn install 

    13.放至tomcat中进行测试 

  • 相关阅读:
    【读书笔记】构建之法(CH7~CH8)
    【课后作业】软件创新
    【个人开发】词频统计
    【读书笔记】没有银弹
    【个人开发】词频统计-代码规范
    【个人开发】词频统计-文档设计
    GitBook 使用
    Android NDK 入门与实践
    Python 爬虫实战(一):使用 requests 和 BeautifulSoup
    手把手教你做个人 app
  • 原文地址:https://www.cnblogs.com/laj12347/p/3105732.html
Copyright © 2011-2022 走看看