⑤子工程maven_web构建
第一步:创建maven_web工程,注意打包方式为war
第二步:配置maven_web工程的pom.xml文件
<dependencies> <dependency> <groupId>com.zgl</groupId> <artifactId>maven_service</artifactId> <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> </dependencies> <build> <finalName>maven_web</finalName> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <version>3.2.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> </plugins> </pluginManagement> </build>
第三步:创建Controller
package com.zgl.ssm.controller; import com.zgl.ssm.pojo.Item; import com.zgl.ssm.service.ItemService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/item") public class ItemController { @Autowired private ItemService itemService; @RequestMapping("/showItem/{id}") public String findById(@PathVariable("id") int id, Model model){ Item item = itemService.findById(id); model.addAttribute("item",item); return "item"; } }
第四步:创建jsp页面
第五步:配置web.xml
<!--指定Spring配置文件位置--> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:applicationContext*.xml</param-value> </context-param> <!--配置Spring框架启动时使用的监听器--> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!--配置SpringMVC的前端控制器--> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping>
第六步:创建springmvc配置文件springmvc.xml
<?xml version="1.0" encoding="UTF-8"?> <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/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> <!--配置扫描器,扫描Controller--> <context:component-scan base-package="com.zgl.ssm.controller"/> <!--视图解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean> </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目录
打开cmd窗口并进入上面bin目录下,执行nexus.bat install命令安装服务(注意需要以管理员身份运行cmd命令)
③启动nexus
经过前面命令已经完成nexus的安装,可以通过如下两种方式启动nexus服务:
在Windows系统服务中启动nexus
在命令行执行nexus.bat start命令启动nexus
④访问nexus
启动nexus服务后,访问http://localhost:8081/nexus
点击右上角LogIn按钮,进行登录。使用默认用户名admin和密码admin123登录系统
登录成功后点击左侧菜单Repositories可以看到nexus内置的仓库列表(如下图)
nexus仓库类型
通过前面的仓库列表可以看到,nexus默认内置了很多仓库,这些仓库可以划分为4种类型,每种类型的仓库用于存放特定的jar包,具体说明如下:
①hosted,宿主仓库,部署自己的jar到这个类型的仓库,包括Releases和Snapshots两部分,Releases为公司内部发布版本仓库、 Snapshots为公司内部测试版本仓库
②proxy,代理仓库,用于代理远程的公共仓库,如maven中央仓库,用户连接私服,私服自动去中央仓库下载jar包或者插件
③group,仓库组,用来合并多个hosted/proxy仓库,通常我们配置自己的maven连接仓库组④virtual(虚拟):兼容Maven1版本的jar或者插件
nexus仓库类型与安装目录对应关系
5.3 将项目发布到maven私服
maven私服是搭建在公司局域网内的maven仓库,公司内的所有开发团队都可以使用。例如技术研发团队开发了一个基础组件,就可以将这个基础组件打成jar包发布到私服,其他团队成员就可以从私服下载这个jar包到本地仓库并在项目中使用。
将项目发布到maven私服操作步骤如下:
1.配置maven的settings.xml文件
<server> <id>releases</id> <username>admin</username> <password>admin123</password> </server> <server> <id>snapshots</id> <username>admin</username> <password>admin123</password> </server>
注意:一定要在idea工具中引入的maven的settings.xml文件中配置
2.配置项目的pom.xml文件
<distributionManagement> <repository> <id>releases</id> <url>http://localhost:8081/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>snapshots</id> <url>http://localhost:8081/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement>
3.执行mvn deploy命令
5.4 从私服下载jar到本地仓库
前面我们已经完成了将本地项目打成jar包发布到maven私服,下面我们就需要从maven私服下载jar包到本地仓库。
具体操作步骤如下:
在maven的settings.xml文件中配置下载模板
<profile> <id>dev</id> <repositories> <repository> <id>nexus</id> <!--仓库地址,即nexus仓库组的地址--> <url> http://localhost:8081/nexus/content/groups/public/</url> <!--是否下载releases构件--> <releases> <enabled>true</enabled> </releases> <!--是否下载snapshots构件--> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <!-- 插件仓库,maven的运行依赖插件,也需要从私服下载插件 --> <pluginRepository> <id>public</id> <name>Public Repositories</name> <url> http://localhost:8081/nexus/content/groups/public/</url> </pluginRepository> </pluginRepositories> </profile>
在maven的settings.xml文件中配置激活下载模板
<activeProfiles> <activeProfile>dev</activeProfile> </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仓库,确认安装是否成功
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-vGM4QAYh-1595380724053)(.\img\图片24.png)]
6.2 将第三方jar安装到maven私服
①下载Oracle的jar包(略)
②在maven的settings.xml配置文件中配置第三方仓库的server信息
<server> <id>thirdparty</id> <username>admin</username> <password>admin123</password> </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
maven依赖报错解决方案
7 问题描述
开发中经常遇到pom文件依赖报红的问题,下面提供了几种解决方案
7.1 解决方案
1.检查依赖是否单词拼写错误
2.先删除全部pom中爆红的依赖,然后再一个一个粘贴进去,定位真正产生问题的依赖
3.找到本地maven仓库,从maven仓库中删除对应的jar包和目录,重新下载
4.如果下载不回来,检查远程仓库是否有对应的依赖,打开maven安装目录下的settings.xml文件,找到mirrors标签,查看用到了远程仓库地址,打开仓库,查询是否有对应的依赖,如果没有换个依赖版本即可。
5.如果经常出现这问题更换maven,重新安装maven,并且将之前已有的仓库删掉,重新下载依赖
7.2 其他问题
8 IDEA使用maven编译控制台乱码
起因
使用idea进行maven项目的编译时,控制台输出中文的时候出现乱码的情况。
通常出现这样的问题,都是因为编码格式不一样导致的。既然是maven出的问题,我们在idea中查找下看可以如何设置文件编码。其实最终都是因为JVM的编译器的编码格式问题,因此我们可以在 Build,Execution,Deployment-Build Tools-Maven-Runner-VM Options 中配置JVM的文件编码格式参数。如下图,在我的环境中,是因为GBK的编码格式导致的乱码,因此我添加了“-Dfile.encoding=GBK”到“VM Options”中,读者可以根据自己的环境,进行配置、调试,看看需要使用到什么编码格式。
配置后控制台已经可以正常输出中文字符,如下图:
maven编译控制台输出乱码,是因为JVM的编码格式跟idea控制台的编码格式不一致导致的问题,只需要添加相应的编码格式(如GBK、UTF-8)到maven-runner-VM Options中即可。