spring-boot-legacy-weblogic icon indicating copy to clipboard operation
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

Results 1 spring-boot-legacy-weblogic issues
Sort by recently updated
recently updated
newest added

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)...