报错如下
我的web.xml配置
action2
org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
action2
/*
我的struts.xml配置
<struts>
regex:.*
/struts2.jsp
/login.jsp
我的action类
public class HelloAction extends ActionSupport{
/**
*
*/
@Override
public String execute() throws Exception
{
System.out.println("进入方法!");
return "index";
}
}
jsp页面1
jsp页面2
My JSP 'struts2.jsp' starting page
问题出在当我提交表单时,就会弹出图所示的代码。
不知道哪里错误了,
struts版本是struts-2.5.10.1