7月24日 Java web 学习笔记

五、Maven(约定大于配置

用途(慢慢发掘):
1.在我们需要导入大量的JAR包时,频繁的去网上下载是很麻烦的,我们可以通过maven的远程仓库对想要的JAR包进行一个导入

一、环境变量的配置

  1. 配置M2_HOME: 安装maven的bin目录下
  2. 配置MAVEN_HOME:安装maven的目录
  3. 在path下面配置MAVEN_HOME的bin目录;就是M2_HOME的位置
#配置成功后 mvn -version 显示
Maven home: D:\JAVA\apache-maven-3.6.3-bin\apache-maven-3.6.3\bin\..
Java version: 9.0.4, vendor: Oracle Corporation, runtime: D:\JAVA\jdk
Default locale: zh_CN, platform encoding: GBK
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"

二、阿里云镜像配置

用途:初步理解就是加快你的下载时间;
配置setting.xml

    <mirror>
    <id>alimaven</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    <mirrorOf>central</mirrorOf>
  </mirror>

三、本地仓库

自己建一个文件夹在加进去:我的文件夹名字是maven_repo,按理来说,应该是想咋个搞,就咋个搞;

<localRepository>D:\JAVA\apache-maven-3.6.3-bin\apache-maven-3.6.3\maven_repo</localRepository>

四、idea使用maven

版本:idea:2020.1.3 ;JDK:1.9;maven:apache-maven-3.6.3 ;

1.新建一个maven目录创建一个maven项目,可以选择有模板和没模版的;二者的区别也不一样。

2.在创建的maven web模板中加入Java(resource root)和resources(resource root);

3.配置tomcat,在idea中

Warning: No artifacts marked for deployment:警告:没有标记为部署的项目,要添加一个项目

4.启动Tomcat

http://localhost:8080/Saxon_web_maven_war/ <!-- 配置完的就是显示后缀名->

5.pom.xml(pom文件)

maven的核心文件

<?xml version="1.0" encoding="UTF-8"?>

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
<!-- 刚才配置的GAV-->
  <groupId>org.example</groupId>
  <artifactId>Saxon_web_maven</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>war</packaging>
<!--jar:java 程序的包
    war:javaweb 应用的包-->
<!--  自己设置的名字-->
  <name>Saxon_web_maven Maven Webapp</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <properties>
<!--    默认的构建编码-->
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!--    编码版本-->
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>
<!--项目依赖-->
  <dependencies>

    <dependency>   <!--    具体依赖的包-->
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
<!--以后用要用的包 可以连他依赖的包一起下下来 <dependency> </dependency> 用这个包起来的 -->
  <build>
    <finalName>Saxon_web_maven</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>
</project>

由于maven的约定大于配置,所以我们在Java文件夹上面如果写的文件不是Java文件,就导不出去。需要在build中配置一下resource文件

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </resource>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>

修改项目默认生成的文件夹WEB-INF里面的web.xml让版本提高,更好的一个测试环境,不是target

原版:

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Archetype Created Web Application</display-name>
</web-app>

更改可以参考tomcat的web.xml

五、maven仓库

第一次使用某一个包的时候,他没在我们本地的仓库中,我们就要去网上的maven仓库寻找我们要找的资源

<dependency>   <!--    具体依赖的包-->
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

六、使用

1.先写出一个java程序
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class HelloWorld extends HttpServlet {

    public void doGet (HttpServletRequest request, HttpServletResponse response)
            throws IOException, ServletException {
        response.setContentType ("text/html");
        response.setCharacterEncoding ("GBK");
        PrintWriter out = response.getWriter ();
        out.println ("<html>");
        out.println ("<head>");
        out.println ("<title>Hello Beauty!</title>");//如果是中文,编码不同会导致乱码,可以在Java中设置编码
        out.println ("</head>");
        out.println ("<body>");
        out.println ("<h1>Hello beauty!</h1>");//如果是中文,编码不同会导致乱码
        out.println ("</body>");
        out.println ("</html>");
    }
}
2.修改webaapps中的web.xml文件
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
                      http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0"
         metadata-complete="true">
<!--  申请一个servlet 指向一个文件-->
  <servlet>
    <servlet-name>s</servlet-name>
    <servlet-class>HelloWorld</servlet-class>
  </servlet>
<!--  与一个    <servlet-name></servlet-name> 建立一个连接,用url访问数据 一队建立一个连接
-->
  <servlet-mapping>
    <servlet-name>s</servlet-name>
    <url-pattern>/saxon</url-pattern><!-- 这个就是等下访问的地址,在项目名后面加上的额外部分-->
  </servlet-mapping>
</web-app>
3.测试
http://localhost:8080/Saxon_web_maven_war; 默认访问webapps下面的index.jsp;
http://localhost:8080/Saxon_web_maven_war/saxon; 加上上面的名字可以访问class文件,如果要想要访问其他的文件,那么直接写下webapps,加上文件名直接访问
posted @ 2020-07-24 22:56  SaxonMo  阅读(107)  评论(0编辑  收藏  举报