How to Deploy to Intellij IDEA Tomcat Folder?

后端 未结 3 1960
没有蜡笔的小新
没有蜡笔的小新 2021-02-13 18:38

I use Intellij IDEA 11.1.2 Ultimate Edition. I run Tomcat 6 from Intellij IDEA. Beside my .war application I have another folder that has static HTML files. When I run tomcat ma

相关标签:
3条回答
  • 2021-02-13 18:42

    If you want to debug you have no need to run Tomcat from IDEA. You can use remote debugging feature. Just set up Tomcat to accept debug(listen to particular port). And create debug configuration from IDEA to attach to this port.

    0 讨论(0)
  • 2021-02-13 18:56

    Tomcat Run configuration has an option to deploy other applications from the server (that already present in the original webapps folder), like your static files:

    deploy

    Another option would be to create a second module for the static content with another artifact and deploy both artifacts from IntelliJ IDEA.

    0 讨论(0)
  • 2021-02-13 18:57

    I think that CrazyCoder's answer is a little bit better. But here is my solution.

    • Go to File -> Project Structure...
    • Select your Web facet
    • In section Web resource directories click to +
    • Web resource directory path is your static content
    • Relative path in deployment directory is where you want to find it in your application war

    Project structure

    0 讨论(0)
提交回复
热议问题