部署前期准备:
- 下载intellij idea 2017 IDE开发工具
- 激活intellij idea 2017 :http://idea.lanyus.com/
- 升级jdk到8.0
- 安装tomcat@9.0
- 安装maven3.5.2
1. 新建maven项目
红箭头标注的3个点,是需要注意的,不要选错了或漏掉
- 待项目下载完成后,修改pom.xml:
junit的版本修改为:4.12
<build>
...
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>//1.8 依据jdk的版本不同而变化
<target>1.8</target>//1.8 依据jdk的版本不同而变化
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
- 修改main/webapp/WEB-INF目录下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_3_1.xsd"
id="WebApp_ID"
version="3.1">
<display-name>ReflectProject</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
- main/webapp/WEB-INF目录下添加classes,lib俩个目录
-
打开project structure 对话框:
source标签:
path标签:
俩个output path的路径都设置为上一步所创建的classes目录
dependencies标签:
然后再打开的对话框中和上一步的lib建立关系
选中箭头的选项,然后ok
-
setting 设置修改:
箭头位置修改为jdk当前版本
检查下边红框部分的设置是否正确:
-
右上角下拉框中的edit configuration 设置:
按照上边步骤完成后可以启动服务了,顺利的话,会自动打开浏览器,页面显示Hello World! ,第一个java项目就完成了。