spring-boot-legacy-weblogic
spring-boot-legacy-weblogic copied to clipboard
An example of a spring boot application that can be deployed to a legacy weblogic server which uses servlet 2.5 api
package com.boostrdev.weblogic.legacy; import java.io.PrintWriter; import java.util.Enumeration; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.xml.ws.Response; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class Encryption { //@RequestMapping("/api/encryption") @RequestMapping(value = "/api/encryption") public void GetEncryptedData(ServletRequest req,ServletResponse res)...