我有一个actionbean接收表单POST请求:
public class MyBean implements ActionBean {}
我需要处理POST数据,看起来我需要覆盖doPost()或doGet(),但这只能在我扩展HttpServlet时才能完成?哪个我不能因为实施ActionBean?我刚刚尝试创建另一个扩展HttpServlet的类来处理它但是不会调用覆盖?
谢谢!
答案 0 :(得分:1)
Post数据参数直接映射到Stripes ActionBean中的setter(不要使用getContext()。getRequest()。getParameter ..!)请参阅Stripes helloworld示例。