eclipse项目导入idea
Project Structure设置
Modules 设置
Sources
1 | —— e:\workspace\test //工程目录 |
Paths
编译输出目录选择默认选项Inherit project….path
Dependencies
添加工程需要jar包,一般在/WebContent/WEB-INF/lib
,必须添加tomcat的library,不然servlet着不到包
Facets 设置
添加Web选择自己的项目
- 更改Deployment Descriptors为自己项目的web.xml路径(
/WebContent/WEB-INF/web.xml
) - 更改Web Resource Directories为自己项目的web资源目录(
.../WebContent
) path … root 设置为/
根目录 - Source Roots勾选…/src路径
Artifacts
设置webapp发布部署输出目录
添加Web Application:Exploded
output directory: c:\develop\tomcat\webapp\test
1 | ——output root //这个是output directory设置的目录 |
配置运行tomcat Server
Run/Debug Configurations设置
Server 默认
Deployment
- 点击+,添加要运行的test项目
- application context 设置为
/test