Clomez
Clomez

Reputation: 1512

configure Tomcat 6 with IntelliJ

I have legacy java, which wants to run on tomcat 6. Now, i got tomcat 7 configured somewhat easily using tutorial. Download, extract, give permissions and it appeared as usable server in intelliJ. But it was not old enough..

However, same is not working with tomcat 6

I can see tomcat 6 is using different layout for content, but i have no idea how to configure it on intelliJ

enter image description here

enter image description here

Upvotes: 1

Views: 201

Answers (1)

Konstantin Annikov
Konstantin Annikov

Reputation: 12815

You've defined tomcat's src folder instead of bin folder. IntelliJ IDEA recognizes Tomcat 6 as predictable for me: enter image description here So, please download suitable distribution here: https://archive.apache.org/dist/tomcat/tomcat-6/v6.0.9/bin/

Upvotes: 1

Related Questions