本文实例讲述了Spring实战之Bean的作用域request用法。分享给大家供大家参考,具体如下:
一 配置
1 applicationContext.xml
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
scope="request"/>
2 web.xml
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
org.springframework.web.context.ContextLoaderListener
org.springframework.web.context.request.RequestContextListener
二 Bean
package org.crazyit.app.service;
public class Person
{
private int age;
}
三 视图
/p>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Spring Bean的作用域// 获取Web应用初始化的Spring容器
WebApplicationContext ctx =
WebApplicationContextUtils.getWebApplicationContext(application);
// 两次获取容器中id为p的Bean
Person p1 = (Person)ctx.getBean("p");
Person p2 = (Person)ctx.getBean("p");
out.println((p1 == p2) + "
");
out.println(p1);
%>
四 测试
希望本文所述对大家java程序设计有所帮助。