这里面向新手,只做演示,不讲原理,通过这篇文章,按照步骤能够让新手快速地搭建建议的web项目,需要了解实现原理的,就没必要往下翻了。
如何用idea快速搭建web的maven项目
创建项目
在idea new project,这里建议先不导入骨架,
然后通过工具栏的structure—>Modules---->+---->Web---->右下角的apply导入web骨架
此时可以看到文件结构如下
引入mawen依赖
在pom.xml里面设置如下(可根据需要修改,这里只是演示)
<?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>
<groupId>club.jming</groupId>
<artifactId>warehouseManagement</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>warehouseManagement 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>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.2.1-b03</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<encoding>UTF-8</encoding>
<java.version>11</java.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
</project>
注意一点,maven默认使用的中央仓库会比较慢(你懂的),所以建议先配置阿里镜像,可以网上搜索资料一大把。其中标签指定jdk版本,因为使用 IntelliJ 时,一运行 maven build,项目的编译 jdk 总是会变成 1.5 版本。
还需要重新设置编译器版本:
创建简单的servlet
在java里,新建一个servlet.HelloServlet,当然这里只是一个非常简单的例子,接到请求,直接返回一个标题。
public class HelloServlet extends HttpServlet {
/**
* 对一个请求方法为 post 的request做出回应
* @param req
* @param resp
* @throws ServletException
* @throws IOException
*/
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException {
resp.getWriter().println("<h1>Hello world!</h1>");
}
}
配置web.xml
如下找到web.xml
配置如下:
<?xml version="1.0" encoding="UTF-8"?>
<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">
<servlet>
<servlet-name>HelloServlet</servlet-name>
<servlet-class>servlet.HelloServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>HelloServlet</servlet-name>
<url-pattern>/a</url-pattern>
</servlet-mapping>
</web-app>
启动tomcat,这里使用maven配置的tomcat
输入如下:
常见错误:
https://editor.csdn.net/md/?articleId=105897974
转载:https://blog.csdn.net/weixin_44308662/article/details/105898404
查看评论