码迷,mamicode.com
首页 > 其他好文 > 详细

struts2是多例的

时间:2020-05-28 16:34:25      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:def   doc   多例   type   config   xxx   执行   soft   end   

 

验证代码:主要看构造器会执行多少次

//Action类

public class Hello {
    public Hello(){
        System.out.println("Struts2是多例的 而 servlet是单例的 servlet的 init永远只执行一次 service每次请求都会执行");
    }

    public String hell(){
        System.out.println("hello..................");
        return "h";
    }
}

//配置类
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "struts-2.1.dtd" >
<struts>

    <package name="xxxxx" extends="struts-default" namespace="/">
        <action name="helloWorld" class="com.cn.Hello" method="hell">
            <result name="h" type="redirect" >/index.jsp</result>
        </action>
    </package>
    

</struts>

//测试结果

http://localhost:8080/Re_Servlet/helloWorld   执行多少次这个url请求 构造器就会构造出多少个对象!!!!

技术图片

 

 

 

 

struts2是多例的

标签:def   doc   多例   type   config   xxx   执行   soft   end   

原文地址:https://www.cnblogs.com/gaoSJ/p/12981268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!