Deploy Spring Boot app in Weblogic

后端 未结 4 1650
礼貌的吻别
礼貌的吻别 2020-12-08 05:47

I\'m having a trouble deploying a Spring boot application in webLogic 12C.

10.4.4 403 Forbidden The server understood the request, but is refusing to fulfill it. Au

4条回答
  •  天命终不由人
    2020-12-08 06:06

    You need to add "implements WebApplicationInitializer" to your hello.Application.

    This is redundant as it extends SpringBootServletInitializer, which itself implements WebApplicationInitializer, however, as @Pierre points out, weblogic requires a class to directly implement it.

提交回复
热议问题