About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
spiderChow
11/23/2017 - 4:01 PM
share
Share
add_circle_outline
Save
how to build a webapp on intellij
my first trial with webapp
first_webapp.md
content_copy
file_download
Rendered
Source
follow the page on
IntelliJ IDEA 创建Web项目
Intellij idea创建javaWeb以及Servlet简单实现
在Mac上关于tomcat服务器的安装、配置、启动、部署web详细流程
在project structure里面,配置web/WEB-INF下的classes和lib文件夹,使他们分别成为编译后的输出目录和运行app时的依赖lib包。
配置服务器,run中edit configuration配置local tomcat。这样run后,不需要在tomcat所在路径的webapp文件夹下手动放置相关程序文件,tomcat可以自己start,运行intellij项目中的webapp。
可以用maven自动添加依赖,不过它不会帮你放进web/WEB-INF/lib中,要在project structure中的artifats里面output layer邮件lib文件夹,copy...那些lib就好了。
run tomcat之后,可以使用postman测试post get的api。如果是本地服务器,就是localhost:端口号/TL/sign_up
在project the modules的dependencies里面加入tomcat的依赖
clear