我对将代码隐藏注释转换为常规struts.xml
文件感到困惑。
如何识别动作类中的动作名称?因为如果 write method public String list{}
- action 它与 JSP 的匹配product-list.jsp
将自动识别页面和 URL 就是product!list
这样。什么是常规插件?
当前网址:
http://localhost:7001/example/product!search
- jsp 名称product-search.jsp
和ProductAction
- 动作类。
请告诉我如何配置与struts.xml
上述配置等效的文件。
我试过如下:
<package name="example" namespace="/" extends="struts-default">
<action name="Search">
<result>product-search.jsp</result>
</action>
</package>
错误 :
org.apache.struts2.dispatcher.Dispatcher - Could not find action or result
There is no Action mapped for namespace / and action name part. - [unknown location]