How to create a HttpServletRequest instance in Swing application
I have a desktop application made in swing, and I need to create HttpServletRequest Object to pass it to another application through Web-Service, so please suggest me something good to create r开发者_StackOverflow社区equest object in simple class.
Spring has nice implementations of HttpServletRequest and HttpServletResponse called MockHttpServletRequest/Response. Javadoc link here. Although intended for testing, they work very well for cases where you need to pass internal servlet objects around.
The classes are in the org.springframework.test jar.
精彩评论