How can I start Jetty from IntelliJ on Windows?

后端 未结 4 1343
有刺的猬
有刺的猬 2020-12-16 05:01

I am using Windows 7 and IntelliJ 12. I downloaded Tomcat and I can use it just fine. I want to use Jetty as well. But I wasn\'t able to.

Is Jetty coming with Intell

4条回答
  •  清歌不尽
    2020-12-16 05:03

    You can also simply use the maven plugin if your project is a maven project..

    
        org.mortbay.jetty
        jetty-maven-plugin
        8.1.9.v20130131
        
            
                /${project.artifactId}
            
            STOP
            9999
            5
        
    
    

    Then simply run jetty-run.

提交回复
热议问题