Spring Boot exception: Could not open ServletContext resource [/WEB-INF/dispatcherServlet-servlet.xml]

I found a workaround putting a dummy dispatcherServlet-servlet.xml file under WEB-INF: <beans xmlns=”http://www.springframework.org/schema/beans” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd”> <!– Do not remove this file! –> </beans>

Spring Security with SOAP web service is working in Tomcat, but not in WebLogic

I just wanted to update the alternate solution I found for this problem, for completeness. Spring Security Filter chain was not working for Weblogic, where as same was working in Tomcat, even for Weblogic version 12.2.1.4. I had followed this example, and implemented Okta filter as spring boot version was not working in Weblogic 12.2.1.4. … Read more

“The Struts dispatcher cannot be found” error while deploying application on WebLogic 12.1.3

If you are using Struts tags inside JSP page that has listed in the welcome-file-list it should be removed. welcome-file-list in web.xml: The welcome-file-list element of web-app, is used to define a list of welcome files. Its sub element is welcome-file that is used to define the welcome file. A welcome file is the file … Read more