Maven高级

1.maven基础知识回顾

1.1 maven介绍

maven 是一个项目管理工具,主要作用是在项目开发阶段对Java项目进行依赖管理和项目构建。
依赖管理:就是对jar包的管理。通过导入maven坐标,就相当于将仓库中的jar包导入了当前项目中。
项目构建:通过maven的一个命令就可以完成项目从清理、编译、测试、报告、打包,部署整个过程。
image.png

1.2 maven的仓库类型

1.本地仓库
2.远程仓库
①maven中央仓库(地址:http://repo2.maven.org/maven2/
②maven私服(公司局域网内的仓库,需要自己搭建)
③其他公共远程仓库(例如apache提供的远程仓库,地址:http://repo.maven.apache.org/maven2/

1.3 maven常用命令

clean: 清理
compile:编译
test: 测试
package:打包
install: 安装

1.4 maven坐标书写规范

image.png

1.5 maven的依赖范围

依赖范围 对于编译classpath有效 对于测试classpath有效 对于运行时classpath有效 例子
compile Y Y Y spring-core
test - Y - Junit
provided Y Y - servlet-api
runtime - Y Y JDBC驱动
system Y Y - 本地的,maven仓库之外的类库

2. maven的依赖传递

2.1 什么是依赖传递

在maven中,依赖是可以传递的,假设存在三个项目,分别是项目A,项目B以及项目C。假设C依赖B,B依赖A,那么我们可以根据maven项目依赖的特征不难推出项目C也依赖A。
image.png
image.png
通过上面的图可以看到,我们的web项目直接依赖了spring-webmvc,而spring-webmvc依赖了sping-aop、spring-beans等。最终的结果就是在我们的web项目中间接依赖了spring-aop、spring-beans等。

2.2 什么是依赖冲突

由于依赖传递现象的存在, spring-webmvc 依赖 spirng-beans-4.2.4,spring-aop 依赖 spring-beans-5.0.2,但是发现 spirng-beans-4.2.4 加入到了工程中,而我们希望 spring-beans-5.0.2 加入工程。这就造成了依赖冲突。
image.png

2.3 如何解决依赖冲突

1.使用maven提供的依赖调解原则

  1. 第一声明者优先原则

路径近者优先原则
2.排除依赖
3.锁定版本

2.4 依赖调节原则——第一声明者优先原则

在 pom 文件中定义依赖,以先声明的依赖为准。其实就是根据坐标导入的顺序来确定最终使用哪个传递过来的依赖。
image.png
结论:通过上图可以看到,spring-aop和spring-webmvc都传递过来了spring-beans,但是因为spring-aop在前面,所以最终使用的spring-beans是由spring-aop传递过来的,而spring-webmvc传递过来的spring-beans则被忽略了。

2.5 排除依赖

可以使用exclusions标签将传递过来的依赖排除出去。
image.png

2.6 版本锁定

采用直接锁定版本的方法确定依赖jar包的版本,版本锁定后则不考虑依赖的声明顺序或依赖的路径,以锁定的版本为准添加到工程中,此方法在企业开发中经常使用。
版本锁定的使用方式:
第一步:在dependencyManagement标签中锁定依赖的版本
第二步:在dependencies标签中声明需要导入的maven坐标
①在dependencyManagement标签中锁定依赖的版本
image.png
②在dependencies标签中声明需要导入的maven坐标
image.png

3.基于maven构建SSM工程案例

3.1 需求描述

本案例基于maven构建 SSM(Spring+SpringMVC+Mybatis)工程,通过maven坐标进行依赖管理。最终实现根据 id 查询商品信息的功能。

3.2 构建maven工程

1.数据库环境搭建
①创建数据库ssmtest
image.png
②创建商品表item

  1. CREATE TABLE `item` (
  2. `id` int(11) NOT NULL auto_increment,
  3. `name` varchar(255) default NULL,
  4. `price` float default NULL,
  5. `createtime` datetime default NULL,
  6. `detail` varchar(255) default NULL,
  7. PRIMARY KEY (`id`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8

2.maven项目构建
①创建maven web项目
②配置pom.xml文件
③实现spring+mybatis整合
创建POJO类

  1. public class Item {
  2. private Integer id;
  3. private String name;
  4. private Float price;
  5. private Date createtime;
  6. private String detail;
  7. //省略setter、getter
  8. }

持久层DAO接口编写

  1. public interface ItemMapper {
  2. public Item findById(int id);
  3. }

Mapper映射文件编写

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  3. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  4. <mapper namespace="com.itheima.ssm.dao.ItemMapper">
  5. <select id="findById" parameterType="int" resultType="item">
  6. select * from item where id=#{id}</select>
  7. </mapper>

业务层Service编写

  1. package com.itheima.ssm.service;
  2. import com.itheima.ssm.pojo.Item;
  3. public interface ItemService {
  4. public Items findById(int id);
  5. }
  1. @Service
  2. @Transactional
  3. public class ItemServiceImpl implements ItemService {
  4. @Autowired
  5. private ItemMapper itemMapper;
  6. public Item findById(int id) {
  7. return itemMapper.findById(id);
  8. }
  9. }

spring配置文件applicationContext-dao.xml编写

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/bean http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
  3. <!-- 数据库连接池 -->
  4. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
  5. <!-- 驱动 -->
  6. <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
  7. <!-- url -->
  8. <property name="url" value="jdbc:mysql://localhost:3306/ssmtest"/>
  9. <!-- 用户名 -->
  10. <property name="username" value="root"/>
  11. <!-- 密码 -->
  12. <property name="password" value="root"/></bean>
  13. <!-- mapper配置 --> <!-- 让spring管理sqlsessionfactory 使用mybatis和spring整合包中的 --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <!-- 数据库连接池 -->
  14. <property name="dataSource" ref="dataSource"/>
  15. <!--为指定包下的所有实体类创建别名-->
  16. <property name="typeAliasesPackage" value="com.itheima.ssm.pojo"/></bean>
  17. <!-- mapper扫描器 :用来产生代理对象-->
  18. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  19. <property name="basePackage" value="com.itheima.ssm.dao"></property>
  20. </bean>
  21. </beans>

spring配置文件applicationContext-service.xml编写
④加入springmvc相关配置
表现层Controller编写

  1. @Controller
  2. @RequestMapping("/item")
  3. public class ItemController {
  4. @Autowired
  5. private ItemService itemService;
  6. @RequestMapping("/showItem/{id}")
  7. public String showItem(@PathVariable("id") int id, Model model){
  8. Item item = itemService.findById(id);
  9. model.addAttribute("item",item);
  10. return "item";
  11. }
  12. }

springmvc.xml文件编写

  1. <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <context:component-scan base-package="com.itheima.ssm.controller"/>
  2. <!-- 配置视图解析器的前缀和后缀 -->
  3. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix“ value="/WEB-INF/jsp/"></property>
  4. <property name="suffix" value=".jsp"></property>
  5. </bean>
  6. </beans>

jsp页面编写
配置web.xml文件
image.png

4.分模块构建maven工程

4.1 分模块构建maven工程分析

在现实生活中,汽车厂家进行汽车生产时,由于整个生产过程非常复杂和繁琐,工作量非常大,所以车场都会将整个汽车的部件分开生产,最终再将生产好的部件进行组装,形成一台完整的汽车。
image.png
image.png

4.2 maven工程的继承

在Java语言中,类之间是可以继承的,通过继承,子类就可以引用父类中非private的属性和方法。同样,在maven工程之间也可以继承,子工程继承父工程后,就可以使用在父工程中引入的依赖。继承的目的是为了消除重复代码。
image.png

4.3 maven工程的聚合

在maven工程的pom.xml文件中可以使用标签将其他maven工程聚合到一起,聚合的目的是为了进行统一操作。
例如拆分后的maven工程有多个,如果要进行打包,就需要针对每个工程分别执行打包命令,操作起来非常繁琐。这时就可以使用标签将这些工程统一聚合到maven工程中,需要打包的时候,只需要在此工程中执行一次打包命令,其下被聚合的工程就都会被打包了。
image.png

4.4 分模块构建maven工程具体实现

①父工程maven_parent构建

  1. <properties>
  2. <spring.version>5.0.5.RELEASE</spring.version>
  3. <springmvc.version>5.0.5.RELEASE</springmvc.version>
  4. <mybatis.version>3.4.5</mybatis.version>
  5. </properties>
  6. <!--锁定jar版本-->
  7. <dependencyManagement>
  8. <dependencies>
  9. <!-- Mybatis -->
  10. <dependency>
  11. <groupId>org.mybatis</groupId>
  12. <artifactId>mybatis</artifactId>
  13. <version>${mybatis.version}</version>
  14. </dependency>
  15. <!-- springMVC -->
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-webmvc</artifactId>
  19. <version>${springmvc.version}</version>
  20. </dependency>
  21. <!-- spring -->
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-context</artifactId>
  25. <version>${spring.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-core</artifactId>
  30. <version>${spring.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-aop</artifactId>
  35. <version>${spring.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-web</artifactId>
  40. <version>${spring.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-expression</artifactId>
  45. <version>${spring.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-beans</artifactId>
  50. <version>${spring.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-aspects</artifactId>
  55. <version>${spring.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-context-support</artifactId>
  60. <version>${spring.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-test</artifactId>
  65. <version>${spring.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework</groupId>
  69. <artifactId>spring-jdbc</artifactId>
  70. <version>${spring.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-tx</artifactId>
  75. <version>${spring.version}</version>
  76. </dependency>
  77. </dependencies>
  78. </dependencyManagement>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <version>3.1</version>
  85. <configuration>
  86. <source>1.8</source>
  87. <target>1.8</target>
  88. <encoding>UTF-8</encoding>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>

②子工程maven_pojo构建
pom.xml

  1. <dependencies>
  2. <dependency>
  3. <groupId>log4j</groupId>
  4. <artifactId>log4j</artifactId>
  5. <version>1.2.12</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>c3p0</groupId>
  9. <artifactId>c3p0</artifactId>
  10. <version>0.9.1.2</version>
  11. </dependency>
  12. </dependencies>

③3.1子工程maven_dao构建
3.2 配置maven_dao工程的pom.xml文件

  1. <dependencies>
  2. <dependency>
  3. <groupId>com.itheima</groupId>
  4. <artifactId>maven_pojo</artifactId>
  5. <version>1.0-SNAPSHOT</version>
  6. </dependency>
  7. <!-- Mybatis和mybatis与spring的整合 -->
  8. <dependency>
  9. <groupId>org.mybatis</groupId>
  10. <artifactId>mybatis</artifactId>
  11. </dependency>
  12. <dependency>
  13. <groupId>org.mybatis</groupId>
  14. <artifactId>mybatis-spring</artifactId>
  15. <version>1.3.1</version>
  16. </dependency>
  17. <!-- MySql驱动 -->
  18. <dependency>
  19. <groupId>mysql</groupId>
  20. <artifactId>mysql-connector-java</artifactId>
  21. <version>5.1.32</version>
  22. </dependency>
  23. <!-- druid数据库连接池 -->
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>druid</artifactId>
  27. <version>1.0.9</version>
  28. </dependency>
  29. <!-- spring相关 -->
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-context</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-core</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-aop</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-expression</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-beans</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-aspects</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-context-support</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-test</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-jdbc</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-tx</artifactId>
  69. </dependency>
  70. <!-- junit测试 -->
  71. <dependency>
  72. <groupId>junit</groupId>
  73. <artifactId>junit</artifactId>
  74. <version>4.12</version>
  75. </dependency>
  76. </dependencies>

3.3 创建DAO接口和Mapper映射文件

  1. package com.itheima.ssm.dao;
  2. import com.itheima.ssm.pojo.Item;
  3. public interface ItemMapper {
  4. public Item findById(int id);
  5. }
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  3. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  4. <mapper namespace="com.itheima.ssm.dao.ItemMapper">
  5. <select id="findById" parameterType="int" resultType="Item">
  6. select * from item where id = #{id}
  7. </select>
  8. </mapper>

3.4 在resources目录下创建spring配置文件applicationContext-dao.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:tx="http://www.springframework.org/schema/tx"
  7. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:schemaLocation="http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context.xsd
  12. http://www.springframework.org/schema/aop
  13. http://www.springframework.org/schema/aop/spring-aop.xsd
  14. http://www.springframework.org/schema/tx
  15. http://www.springframework.org/schema/tx/spring-tx.xsd">
  16. <!--配置数据源信息,使用druid连接池-->
  17. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
  18. <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
  19. <property name="url" value="jdbc:mysql://localhost:3306/ssmtest"/>
  20. <property name="username" value="root"/>
  21. <property name="password" value="root"/>
  22. </bean>
  23. <!--配置spring整合mybatis框架的SQLSessionFactoryBean-->
  24. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
  25. <property name="dataSource" ref="dataSource"/>
  26. <!--扫描pojo包,为实体类创建别名-->
  27. <property name="typeAliasesPackage" value="com.itheima.ssm.pojo"/>
  28. </bean>
  29. <!--mapper扫描器,用于产生代理对象-->
  30. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  31. <property name="basePackage" value="com.itheima.ssm.dao"/>
  32. </bean>
  33. </bean

④子工程maven_service构建
第一步:创建maven_service工程
第二步:配置maven_service工程的pom.xml文件

  1. <dependencies>
  2. <dependency>
  3. <groupId>com.itheima</groupId>
  4. <artifactId>maven_dao</artifactId>
  5. <version>1.0-SNAPSHOT</version>
  6. </dependency>
  7. </dependencies>

第三步:创建Service接口和实现类

  1. package com.itheima.ssm.service;
  2. import com.itheima.ssm.pojo.Item;
  3. public interface ItemService {
  4. public Item findById(int id);
  5. }
  1. package com.itheima.ssm.service;
  2. import com.itheima.ssm.dao.ItemMapper;
  3. import com.itheima.ssm.pojo.Item;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.stereotype.Service;
  6. import org.springframework.transaction.annotation.Transactional;
  7. @Service
  8. @Transactional
  9. public class ItemServiceImpl implements ItemService {
  10. @Autowired
  11. private ItemMapper itemMapper;
  12. public Item findById(int id) {
  13. return itemMapper.findById(id);
  14. }
  15. }

第四步:创建spring配置文件applicationContext-service.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:tx="http://www.springframework.org/schema/tx"
  7. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:schemaLocation="http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context.xsd
  12. http://www.springframework.org/schema/aop
  13. http://www.springframework.org/schema/aop/spring-aop.xsd
  14. http://www.springframework.org/schema/tx
  15. http://www.springframework.org/schema/tx/spring-tx.xsd">
  16. <!--配置扫描器,扫描Service-->
  17. <context:component-scan base-package="com.itheima.ssm.service"/>
  18. <!--事务管理器-->
  19. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  20. <property name="dataSource" ref="dataSource"/>
  21. </bean>
  22. <!--事物注解驱动-->
  23. <tx:annotation-driven transaction-manager="transactionManager"/>
  24. </beans>

⑤子工程maven_web构建
第一步:创建maven_web工程,注意打包方式为war
第二步:配置maven_web工程的pom.xml文件
UTF-8 1.8 1.8

  1. <dependencies>
  2. <dependency>
  3. <groupId>com.itheima</groupId>
  4. <artifactId>maven_service</artifactId>
  5. <version>1.0-SNAPSHOT</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework</groupId>
  9. <artifactId>spring-webmvc</artifactId>
  10. </dependency>
  11. </dependencies>
  12. <build>
  13. <finalName>maven_web</finalName>
  14. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  15. <plugins>
  16. <plugin>
  17. <artifactId>maven-clean-plugin</artifactId>
  18. <version>3.1.0</version>
  19. </plugin>
  20. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  21. <plugin>
  22. <artifactId>maven-resources-plugin</artifactId>
  23. <version>3.0.2</version>
  24. </plugin>
  25. <plugin>
  26. <artifactId>maven-compiler-plugin</artifactId>
  27. <version>3.8.0</version>
  28. </plugin>
  29. <plugin>
  30. <artifactId>maven-surefire-plugin</artifactId>
  31. <version>2.22.1</version>
  32. </plugin>
  33. <plugin>
  34. <artifactId>maven-war-plugin</artifactId>
  35. <version>3.2.2</version>
  36. </plugin>
  37. <plugin>
  38. <artifactId>maven-install-plugin</artifactId>
  39. <version>2.5.2</version>
  40. </plugin>
  41. <plugin>
  42. <artifactId>maven-deploy-plugin</artifactId>
  43. <version>2.8.2</version>
  44. </plugin>
  45. </plugins>
  46. </pluginManagement>
  47. </build>

第三步:创建Controller

  1. package com.itheima.ssm.controller;
  2. import com.itheima.ssm.pojo.Item;
  3. import com.itheima.ssm.service.ItemService;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.stereotype.Controller;
  6. import org.springframework.ui.Model;
  7. import org.springframework.web.bind.annotation.PathVariable;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. @Controller
  10. @RequestMapping("/item")
  11. public class ItemController {
  12. @Autowired
  13. private ItemService itemService;
  14. @RequestMapping("/showItem/{id}")
  15. public String findById(@PathVariable("id") int id, Model model){
  16. Item item = itemService.findById(id);
  17. model.addAttribute("item",item);
  18. return "item";
  19. }
  20. }

第四步:创建jsp页面
第五步:配置web.xml

  1. <!--指定Spring配置文件位置-->
  2. <context-param>
  3. <param-name>contextConfigLocation</param-name>
  4. <param-value>classpath*:applicationContext*.xml</param-value>
  5. </context-param>
  6. <!--配置Spring框架启动时使用的监听器-->
  7. <listener>
  8. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  9. </listener>
  10. <!--配置SpringMVC的前端控制器-->
  11. <servlet>
  12. <servlet-name>springmvc</servlet-name>
  13. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  14. <init-param>
  15. <param-name>contextConfigLocation</param-name>
  16. <param-value>classpath:springmvc.xml</param-value>
  17. </init-param>
  18. </servlet>
  19. <servlet-mapping>
  20. <servlet-name>springmvc</servlet-name>
  21. <url-pattern>*.do</url-pattern>
  22. </servlet-mapping>

第六步:创建springmvc配置文件springmvc.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:tx="http://www.springframework.org/schema/tx"
  7. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:schemaLocation="http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context.xsd
  12. http://www.springframework.org/schema/aop
  13. http://www.springframework.org/schema/aop/spring-aop.xsd
  14. http://www.springframework.org/schema/tx
  15. http://www.springframework.org/schema/tx/spring-tx.xsd">
  16. <!--配置扫描器,扫描Controller-->
  17. <context:component-scan base-package="com.itheima.ssm.controller"/>
  18. <!--视图解析器-->
  19. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  20. <property name="prefix" value="/WEB-INF/jsp/"/>
  21. <property name="suffix" value=".jsp"/>
  22. </bean>
  23. </beans>

项目整体结构如下:
1)maven_parent为父工程,其余工程为子工程,都继承父工程maven_parent
2)maven_parent工程将其子工程都进行了聚合
3)子工程之间存在依赖关系,比如maven_dao依赖, maven_pojo、maven_service依赖maven_dao、 maven_web依赖maven_service

5. maven私服

5.1 私服说明

maven仓库分为本地仓库和远程仓库,而远程仓库又分为maven中央仓库、其他远程仓库和私服(私有服务器)。其中,中央仓库是由maven官方提供的,而私服就需要我们自己搭建了。
maven私服就是公司局域网内的maven远程仓库,每个员工的电脑上安装maven软件并且连接maven私服,程序员可以将自己开发的项目打成jar并发布到私服,其它项目组成员就可以从私服下载所依赖的jar。私服还充当一个代理服务器的角色,当私服上没有jar包时会从maven中央仓库自动下载。
nexus 是一个maven仓库管理器(其实就是一个软件),nexus可以充当maven私服,同时nexus还提供强大的仓库管理、构件搜索等功能。

5.2 搭建maven私服

①下载nexus
https://help.sonatype.com/repomanager2/download/download-archives—-repository-manager-oss
②安装nexus
将下载的压缩包进行解压,进入bin目录
image.png
打开cmd窗口并进入上面bin目录下,执行nexus.bat install命令安装服务(注意需要以管理员身份运行cmd命令)
image.png
③启动nexus
经过前面命令已经完成nexus的安装,可以通过如下两种方式启动nexus服务:
在Windows系统服务中启动nexus
image.png
在命令行执行nexus.bat start命令启动nexus
image.png
④访问nexus
启动nexus服务后,访问http://localhost:8081/nexus
点击右上角LogIn按钮,进行登录。使用默认用户名admin和密码admin123登录系统
登录成功后点击左侧菜单Repositories可以看到nexus内置的仓库列表(如下图)
image.png
nexus仓库类型
通过前面的仓库列表可以看到,nexus默认内置了很多仓库,这些仓库可以划分为4种类型,每种类型的仓库用于存放特定的jar包,具体说明如下:
①hosted,宿主仓库,部署自己的jar到这个类型的仓库,包括Releases和Snapshots两部分,Releases为公司内部发布版本仓库、 Snapshots为公司内部测试版本仓库
②proxy,代理仓库,用于代理远程的公共仓库,如maven中央仓库,用户连接私服,私服自动去中央仓库下载jar包或者插件
③group,仓库组,用来合并多个hosted/proxy仓库,通常我们配置自己的maven连接仓库组
④virtual(虚拟):兼容Maven1版本的jar或者插件
image.png
nexus仓库类型与安装目录对应关系

5.3 将项目发布到maven私服

maven私服是搭建在公司局域网内的maven仓库,公司内的所有开发团队都可以使用。例如技术研发团队开发了一个基础组件,就可以将这个基础组件打成jar包发布到私服,其他团队成员就可以从私服下载这个jar包到本地仓库并在项目中使用。
将项目发布到maven私服操作步骤如下:

  1. 配置maven的settings.xml文件

    1. <server>
    2. <id>releases</id>
    3. <username>admin</username>
    4. <password>admin123</password>
    5. </server>
    6. <server>
    7. <id>snapshots</id>
    8. <username>admin</username>
    9. <password>admin123</password>
    10. </server>

    注意:一定要在idea工具中引入的maven的settings.xml文件中配置

  2. 配置项目的pom.xml文件

    1. <distributionManagement>
    2. <repository>
    3. <id>releases</id>
    4. <url>http://localhost:8081/nexus/content/repositories/releases/</url>
    5. </repository>
    6. <snapshotRepository>
    7. <id>snapshots</id> <url>http://localhost:8081/nexus/content/repositories/snapshots/</url> </snapshotRepository>
    8. </distributionManagement>
  3. 执行mvn deploy命令

image.png

5.4 从私服下载jar到本地仓库

前面我们已经完成了将本地项目打成jar包发布到maven私服,下面我们就需要从maven私服下载jar包到本地仓库。
具体操作步骤如下:
在maven的settings.xml文件中配置下载模板

  1. <profile>
  2. <id>dev</id>
  3. <repositories>
  4. <repository>
  5. <id>nexus</id>
  6. <!--仓库地址,即nexus仓库组的地址-->
  7. <url>
  8. http://localhost:8081/nexus/content/groups/public/</url>
  9. <!--是否下载releases构件-->
  10. <releases>
  11. <enabled>true</enabled>
  12. </releases>
  13. <!--是否下载snapshots构件-->
  14. <snapshots>
  15. <enabled>true</enabled>
  16. </snapshots>
  17. </repository>
  18. </repositories>
  19. <pluginRepositories>
  20. <!-- 插件仓库,maven的运行依赖插件,也需要从私服下载插件 -->
  21. <pluginRepository>
  22. <id>public</id>
  23. <name>Public Repositories</name>
  24. <url>
  25. http://localhost:8081/nexus/content/groups/public/</url>
  26. </pluginRepository>
  27. </pluginRepositories>
  28. </profile>

在maven的settings.xml文件中配置激活下载模板

  1. <activeProfiles>
  2. <activeProfile>dev</activeProfile>
  3. </activeProfiles>

6. 将第三方jar安装到本地仓库和maven私服

在maven工程的pom.xml文件中配置某个jar包的坐标后,如果本地的maven仓库不存在这个jar包,maven工具会自动到配置的maven私服下载,如果私服中也不存在,maven私服就会从maven中央仓库进行下载。
但是并不是所有的jar包都可以从中央仓库下载到,比如常用的Oracle数据库驱动的jar包在中央仓库就不存在。此时需要到Oracle的官网下载驱动jar包,然后将此jar包通过maven命令安装到我们本地的maven仓库或者maven私服中,这样在maven项目中就可以使用maven坐标引用到此jar包了。

6.1 将第三方jar安装到本地仓库

①下载Oracle的jar包(略)
②mvn install命令进行安装
mvn install:install-file -Dfile=ojdbc14-10.2.0.4.0.jar -DgroupId=com.oracle -DartifactId=ojdbc14 –
Dversion=10.2.0.4.0 -Dpackaging=jar
③查看本地maven仓库,确认安装是否成功
image.png

6.2 将第三方jar安装到maven私服

①下载Oracle的jar包(略)
②在maven的settings.xml配置文件中配置第三方仓库的server信息

  1. <server>
  2. <id>thirdparty</id>
  3. <username>admin</username>
  4. <password>admin123</password>
  5. </server>

③执行mvn deploy命令进行安装
mvn deploy:deploy-file -Dfile=ojdbc14-10.2.0.4.0.jar -DgroupId=com.oracle -DartifactId=ojdbc14 –
Dversion=10.2.0.4.0 -Dpackaging=jar –
Durl=http://localhost:8081/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty

参考#