NimChimpsky
NimChimpsky

Reputation: 47290

I am not using web.xml as using servlet container version 3, in tomcat 7 with Spring mvc. But maven expects web/xml?

this seems rather hacky if added to POM :

<configuration> 
  <failOnMissingWebXml>false</failOnMissingWebXml> 
</configuration>

Upvotes: 0

Views: 90

Answers (1)

Bassem Reda Zohdy
Bassem Reda Zohdy

Reputation: 12942

do you create web configuration class to implements WebApplicationInitializerif you have this class it should not ask about web.xml

Upvotes: 2

Related Questions