I have a very simple spring boot project with a dependency
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency>
When I create this, the web-inf folder is created in the target directory and packs everything into classes and the lib folder.
I want to have one xml file ("jboss-deployment-structure.xml") in the web-inf root directory ("web-inf / jboss-deployment-structure.xml"), where should it be placed in the src folder?
I tried to create the folder "public / jboss-deployment-structure.xml" in src but no luck.
java spring spring-mvc jboss
Mayurb
source share