spiderChow
11/23/2017 - 4:01 PM

how to build a webapp on intellij

my first trial with webapp

follow the page on

在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的依赖