Maven创建

maven创建步骤

  1. 下载maven 的服务器 maven.apache.org
  2. 把压缩文件解压到某个目录 一般为D盘
  3. 配置maven的环境变量M2_HOME=“安装路径” 和PATH=“%M2_HOME%\bin”

    • 验证maven是否配置成功 cmd–>mvn –version
  4. 配置maven
    Maven服务器集成私服 修改maven安装路径下的conf–>settings.xml
    1) 设置本地仓库的位置 D:/.m2/repository(你想要本地仓库存放的位置)
    2) 设置中央仓库(私服地址)

    <mirror>
    <id>mirrorIdid>
    
    <mirrorOf>centralmirrorOf>   
    <name>nexus repositoryname>
    <url>http://192.168.2.217:7000/nexus/content/groups/public/(私服地址)url>
    mirror>
  5. 设置maven和MyEclipse的集成

    • 设置 window–> installation 和 user Settings
  6. 新建maven项目
    File–>new–> maven project–>next–>找到maven-archtype-webapp–>next–>填写Group Id 和Artifact Id–>final

  7. maven的项目结构

项目名
     Src
           Main
                  Java          -->编写java代码
                  Resources      -->编写配置文件
                  Webapp       -->存放web资源
           Test                 
                  Java           -->测试java代码
                  Resources      -->测试需要的配置文件
     Target                      -->代码编译后的文件
     Pom.xml                    -->maven核心配置文件
  1. maven生命周期
    清理clean–>编译compiler–>测试test–>打包package–>安装install–>部署deploy–>生成站点site

解决项目中jsp页面报错问题

  • 在pom.xml中引入servlet-api 和 jsp-api
  <dependency>
  <groupId>org.springframeworkgroupId>
  <artifactId>spring-contextartifactId>
  <version>4.3.8.RELEASEversion>
 dependency>

<dependency>
  <groupId>javax.servlet.jspgroupId>
  <artifactId>jsp-apiartifactId>
  <version>2.2version>
dependency>

在maven中搭建spring项目

  1. 引入Spring框架所依赖的jar包
    xml

    org.springframework
    spring-context
    4.3.8.RELEASE

  2. 编写spring配置文件 –applicationContext.xml
  3. 加载spring容器的代码
  4.        - ClassPathXmlApplicationContext(“资源路径“)  
           - FileSystemXmlApplicationContext(“磁盘路径”)
    1. 多个配置文件引入的方式
    <import resource=””/>
    ClassPathXmlApplicationContext(new String[]{“a.xml”,“b.xml”})
Spring默认采用单例模式管理对像,spring容器在启动的过程中,会加载所有的单例模式的对象

你可能感兴趣的:(java框架技术)