springBoot application on Jboss EAP, servlet context not lodaed

前端 未结 3 1817
遇见更好的自我
遇见更好的自我 2020-12-31 18:34

I have a very simple spring boot application that I want to deploy to Jboss EAP. Here is my simple application class:

@SpringBootApplication

public class M         


        
3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-31 19:11

    You mentioned JBoss 6 in you tags. Based on my experience Spring Boot Autoconfigure and JBoss 6 (specifically) is a no-go. If Hot Deploy is turned on or perhaps some other condition JBoss VFS performs some aggressive scanning of all jars in the war file. Once it starts to scan the classes in the autoconfigure module, it will abort due to an error akin to ClassNotFoundException. If you are using Autoconfigure, one solution might be to place the spring modules in the Container's lib. But this would make deployment unwieldy. I did not see this behavior on JBoss 7 nor Wildfly 8.

提交回复
热议问题