struts2.5.10的安装配置

来源:互联网 发布:玫瑰花数 c 语言 n位数 编辑:程序博客网 时间:2024/05/16 17:29

这几天在自学struts2,在安装配置上遇到很多问题:记录如下

困扰了三天的问题最后在网上找到了答案,配置好环境和web.xml;struts.xml后出现一个问题,index页面可以正常访问,跳转后总是报错:

  1. com.tutorialspoint.struts2.HelloWorldAction.create()
  2. Wrong method was defined as an action method: create

最终解决办法删除位置文件中的struts2-rest-plugin-2.t.10.1.jar.


配置步骤记录如下:


1.web.xml


<?xml version="1.0" encoding="UTF-8"?>

<web-app id="starter" version="2.4"
         xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
   <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
  
    <filter>
        <filter-name>action2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>action2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
</web-app>


2. struts.xml


<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
        "http://struts.apache.org/dtds/struts-2.5.dtd">
<struts>
  <constant name="struts.devMode" value="true" />
  <package name="helloworld" extends="struts-default">
  <global-allowed-methods>regex:.*</global-allowed-methods>
    <action name="hello" class="com.tutorialspoint.struts2.HelloWorldAction" method="execute">
            <result name="success">/WEB-INF/pages/helloWorld.jsp</result>
        </action>    
    </package>
</struts>


原创粉丝点击