继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

java struts入门程序.

田心枫
关注TA
已关注
手记 8
粉丝 105
获赞 190
准备:使用maven创建struts2项目

1.首先创建index.jsp,主体一行代

<a href="${pageContext.request.contextPath}/hello">第一次使用strut2</a>

2.创建HelloAction

创建方法say,返回String

public String say(){
return "good";
}

3.配置web.xml,屏蔽所有请求

<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

4.配置struts.文件xml

<package name="default" namespace="/" extends="struts-default">
    <action name="hello" class="cn.itcast.action.HelloAction"
            method="say">
        <result name="good">/hello.jsp</result>
    </action>
</package>

5.创建hello.jsp

<h1>hello struts</h1>
工作流程如图

图片描述

注意事项:

maven默认不编译src下面的 .xml文件,需要在pom.xml里面加上

<build>
    <resources>
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
    </resources>
</build>
打开App,阅读手记
5人推荐
发表评论
随时随地看视频慕课网APP