這是struts。xml文件?<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE struts PUBLIC? ? ? ? "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"? ? ? ? "http://struts.apache.org/dtds/struts-2.3.dtd"><struts>? ? <!-- struts2的action必須放在一個指定的包空間下定義 -->? ? <package name="default" extends="struts-default">? ? <!-- 定義處理請求URL為login.action的Action -->? ? ? ? <action name="helloworld_*" method="{1}" class="an.cm.HelloWorldAction">? ? ? ? <!-- 定義處理結(jié)果字符串和資源之間的映射關(guān)系 -->? ? ? ? ? ? <result name="add">/{1}.jsp</result>? ? ? ? ? ? <result name="update">/{1}.jsp</result>? ? ? ? </action>? ? ? ??? ? ? ??? ? </package>? ??? ? <constant name="struts.enable.DynamicMethodInvocation" value="true" />?</struts>這是result.jsp文件<%@ page language="java" contentType="text/html; charset=ISO-8859-1"? ? pageEncoding="ISO-8859-1"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Insert title here</title></head><body>This is result.jsp;</body></html>這是add.jsp文件<%@ page language="java" contentType="text/html; charset=ISO-8859-1"? ? pageEncoding="ISO-8859-1"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Insert title here</title></head><body>This is add.jsp;</body></html>這是update.jsp文件<%@ page language="java" contentType="text/html; charset=ISO-8859-1"? ? pageEncoding="ISO-8859-1"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Insert title here</title></head><body>This is update.jsp;</body></html>然后按照文本struts.xml文件中的方法運行出現(xiàn)下列這種情況
struts 動態(tài)調(diào)用無法顯示
好好認(rèn)真學(xué)習(xí)
2017-04-01 20:11:42