`
康敏栋
  • 浏览: 171277 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

Spring学习笔记3

阅读更多
1.简单属性注入,直接在xml中给变量赋值,这种方法很少使用,不过在数据库连接时有时会用
<bean id="myDateSource" class="org.apache.commom.dbcp.MydateSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mydb"/>
<property name="username" value="admin"/>
<property name="password" value="123456"/>
</bean>
2.bean的生命周期scope
在配置文件xml中可以配置bean的一个属性,即scope
<bean id="" class="" scope="">
从文档我得知scope的值:singleton,prototype,request.session,global session,其中默认人singleton,后面三种比较少使用,
下面验证singleton和prototype的区别
UserServiceTest.java
package com.dong.test;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.dong.service.UserService;

public class UserServiceTest {

	@Test
	public void testAdd() {
		ApplicationContext applicationContext=new ClassPathXmlApplicationContext("beans.xml");
		UserService userService=(UserService)applicationContext.getBean("userService");
		UserService userService1=(UserService)applicationContext.getBean("userService");
		System.out.println(userService==userService1);//根据输出的结果观察区别
	}

}

然后再beans.xml中配置
<bean id="userService" class="com.dong.service.UserService" scope="singleton">,运行看输出结果 true
<bean id="userService" class="com.dong.service.UserService" scope="prototype">,运行看输出结果 false
从上面可以发现如果是singleton,对象是不变的,而prototype是变化的
补充:当bean中id是action时,则scope为prototype
3.自动装配autowire,比较常用的byName和byType
UserDAOImpl.java,重写一下toString
package com.dong.impl;

import com.dong.dao.UserDAO;
import com.dong.model.User;

public class UserDAOImpl implements UserDAO{
	private String daoId;
	public void save(User u){
		System.out.println("haha");
	}
	@Override
	public String toString(){
		return daoId;
	}
	public String getDaoId() {
		return daoId;
	}
	public void setDaoId(String daoId) {
		this.daoId = daoId;
	}
	
}

UserService.java,此处需注意一定别把构造方法写进去,我因为这个项目是把上午的项目拿过来,没改,后来试了半天没出来结果
package com.dong.service;

import com.dong.dao.UserDAO;
import com.dong.impl.UserDAOImpl;
import com.dong.model.User;


public class UserService {
	private UserDAO userDAO=new UserDAOImpl();
	
	
	//增加用户
	public void add(User u){
		this.userDAO.save(u);
	}
	public UserDAO getUserDAO() {
		return userDAO;
	}
	public void setUserDAO(UserDAO userDAO) {
		this.userDAO = userDAO;
	}
	
}

UserServiceTest.java
package com.dong.test;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.dong.service.UserService;

public class UserServiceTest {

	@Test
	public void testAdd() {
		ApplicationContext applicationContext=new ClassPathXmlApplicationContext("beans.xml");
		UserService userService=(UserService)applicationContext.getBean("userService");
		System.out.println(userService.getUserDAO());
	}

}

把代码写好了后接着配置xml。
<bean id="userDAO1" class="com.dong.impl.UserDAOImpl">
<property name="daoId" value="1"></property>
</bean>
<bean id="userDAO2" class="com.dong.impl.UserDAOImpl">
<property name="daoId" value="2"></property>
</bean>
<bean id="userService" class="com.dong.service.UserService" autowire="byName">
</bean>

输出结果:null
<bean id="userDAO" class="com.dong.impl.UserDAOImpl">
<property name="daoId" value="1"></property>
</bean>
<bean id="userDAO2" class="com.dong.impl.UserDAOImpl">
<property name="daoId" value="2"></property>
</bean>
<bean id="userService" class="com.dong.service.UserService" autowire="byName">
</bean>

输出结果:1
<bean id="userDAO1" class="com.dong.impl.UserDAOImpl">
<property name="daoId" value="1"></property>
</bean>
<bean id="userDAO2" class="com.dong.impl.UserDAOImpl">
<property name="daoId" value="2"></property>
</bean>
<bean id="userService" class="com.dong.service.UserService" autowire="byType">
</bean>

报错
<bean id="userDAO2" class="com.dong.impl.UserDAOImpl">
<property name="daoId" value="2"></property>
</bean>
<bean id="userService" class="com.dong.service.UserService" autowire="byType">
</bean>

输出结果:2
由上可知,当autowire为byName时,bean中的id必须UserService.java中的变量名一致,因为它是通过setter和getter方法获取的;而当autowire为byTypee时,则id名只要与后台模糊匹配即可,<bean id="DAO" class="com.dong.impl.UserDAOImpl">甚至都可以,但只能是一个bean,否则报错 。
autowire也可以设置成全局的,即在<beans....  default-autowire="byName">中配置就可以了,则在<bean>中就是byName装配,当中<bean>也设置了autowire,则为<bean>中自己的类型装配
4.lazy_init,中spring使用是所有的bean都会初始化一次,如果实在是太多太多的话也许初始化会非常的慢,而有些bean有时用不上它也初始化了,所以可以使用lazy_init将其设置为<bean lazy_init="true">,也可以再<beans>中设置全局
5.init_method和destroy_method这个类似于servlet
先在UserService.java中添加者两个方法
public void init(){
		System.out.println("init");
	}
public void destroy(){
		System.out.println("destroy");
	}

接着在UserServiceTest.java中改为
public void testAdd() {
		ClassPathXmlApplicationContext applicationContext=new ClassPathXmlApplicationContext("beans.xml");
		UserService userService=(UserService)applicationContext.getBean("userService");
		UserService userService1=(UserService)applicationContext.getBean("userService");
		applicationContext.destroy();
	}

最后配置xml文件,
<bean id="userService" class="com.dong.service.UserService" autowire="byType" init-method="init" destroy-method="destroy">
运行后会输出 init  destroy
如果我中bean中设置scope为prototype,运行会发现输出 init  init,并没有调用destroy,这是因为ApplicationContext是不会监控prototype的.所以建议init_method和destroy_method不要和prototype一起使用
分享到:
评论

相关推荐

    spring学习笔记3

    **Step 3:** 在Spring的配置文件中引用JNDI名称: ```xml &lt;bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"&gt; ``` 通过这种方式,Spring将自动从JNDI环境中查找并绑定到相应的...

    Springcloud学习笔记.md

    Springcloud学习笔记.md,Springcloud学习笔记.md,Springcloud学习笔记.md,Springcloud学习笔记.md,Springcloud学习笔记.md,Springcloud学习笔记.md,Springcloud学习笔记.md,Springcloud学习笔记.md,Spring...

    Spring学习笔记( spring视频笔记)

    Spring学习笔记( spring视频笔记)

    Spring学习笔记 自我总结

    spring学习笔记

    Spring学习笔记(精华全记录)

    ### Spring学习笔记(精华全记录) #### Spring框架概述 Spring框架源自Rod Johnson的个人项目,最初于2002年末发布。Spring并非一开始就作为一个完整的框架出现,而是从一个项目逐步发展而来。随着项目的成熟,...

    Spring学习笔记&源码

    本资料“Spring学习笔记&源码”是基于网易云课堂黑马程序员的Spring四天精通课程,旨在帮助学习者深入理解和实践Spring框架。 笔记部分可能会涵盖以下内容: 1. **Spring概述**:介绍Spring框架的历史、特点和主要...

    Spring学习笔记+学习源码.zip

    这份"Spring学习笔记+学习源码.zip"资源包含了深入学习Spring及其相关技术的知识点,以及实践代码,对提升Spring技能将大有裨益。 首先,我们来详细讨论Spring框架的主要组件和功能: 1. **依赖注入(Dependency ...

    Spring学习笔记(马士兵spring视频笔记).doc

    Spring学习笔记(马士兵spring视频笔记).docSpring学习笔记(马士兵spring视频笔记).docSpring学习笔记(马士兵spring视频笔记).docSpring学习笔记(马士兵spring视频笔记).doc

    Spring学习笔记.zip

    根据提供的压缩包文件名,我们可以推测这是一个逐步学习Spring的系列笔记。从"Spring_day1"开始,可能涵盖了Spring的基础概念、环境搭建和基本配置。"Spring_day2"可能涉及了依赖注入和AOP的深入讲解。"Spring_day3...

    Spring框架学习笔记

    这份"Spring框架学习笔记"涵盖了Spring框架的基础知识、核心组件以及高级特性,对于初学者来说是一份宝贵的资料。 一、Spring框架概述 Spring框架是为了解决企业应用开发的复杂性而设计的,它提供了一个全面的基础...

    javaSpring学习笔记

    “Java Spring学习笔记”是一份宝贵的资源,专门为想要学习和掌握Java Spring框架的开发者而设计。这份学习笔记提供了详细而系统的教程和实践指南,帮助初学者快速入门,并带领已经有一定经验的开发者深入理解和应用...

    Spring6学习笔记

    Spring6学习笔记,师承老杜

    Spring Cloud 学习笔记.pdf

    Spring Cloud是一套微服务架构下的分布式系统解决方案,提供了在分布式系统环境下快速构建一些常见模式的工具,如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式...

    springsecurity学习笔记

    在"springsecurity学习笔记"中,你可能会涉及以下主题: - Spring Security的基本配置,包括web安全配置和全局安全配置。 - 如何自定义认证和授权流程,比如实现自定义的AuthenticationProvider和...

    尚学堂Spring学习笔记

    "尚学堂Spring学习笔记" 本文档记录了尚学堂Spring学习笔记的重要知识点,涵盖了Spring配置文件的设置、普通属性的注入、自定义属性编辑器、公共属性的注入、Spring注解等内容。 一、Spring配置文件的设置 在...

    spring学习笔记

    ### Spring学习笔记知识点详解 #### 一、Spring框架概述 **Spring** 是一个开源的、分层的企业级应用开发框架,旨在简化Java EE应用程序的开发。它的主要目标是提高开发效率,减少耦合度,并提供一种更为简洁的...

    Spring学习笔记.doc

    ### Spring学习笔记知识点详解 #### 一、Spring框架概述 **1.1 什么是Spring** Spring框架是一个开源的轻量级应用框架,主要用于简化企业级应用程序的开发过程。它的核心特性在于提供了一种灵活的方式来组织和...

    Spring学习笔记.xmind

    Spring学习笔记.xmind

    Spring学习笔记

    Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记Spring学习笔记

    Spring学习笔记PDF

    Spring学习笔记

Global site tag (gtag.js) - Google Analytics