Spring注解式与配置文件式

http://tom-seed.iteye.com/blog/1584632

Spring注解方式bean容器管理

1.通过在配置文件中配置spring组件注入

Xml代码  

  1. <context:component-scan base-package="com"/><!---通过该语句可以搜索com及com下子包中的类->
  2. <mvc:annotation-driven/>

2.为Spring编写简单bean类,一般对应接口与具体实现类

例如:

a.在com包下建立如下接口:HessianHelloWorld

b.com.impl包下新建如下实现类:HessianHelloWorldImpl

3.在此处使用注解形式进行来支持bean的管理

在具体需要托管的bean的类名上添加注解:@Controller

完整代码如下:

Java代码  

  1. @Controller
  2. public class HessianHelloWorldImpl implements HessianHelloWorld{}

4.在业务类中调用上面的托管bean,以动态代理的形式引入;

private HessianHelloWorld hello;

并在属性上添加注解

@Autowired

完整代码如下:

Java代码  

  1. @Autowired
  2. private HessianHelloWorld hello;

注解方式结束

Spring配置文件形式:

1.去除上面的所有注解

在Spring配置文件中添加类的配置

Xml代码  

  1. <bean id="hessianHelloWorldImpl" class="com.impl.HessianHelloWorldImpl"></bean>

2.在Spring配置文件中添加业务类的配置

业务类名为Test,在业务类中配置属性(helloworld)及属性指向托管bean的id,其中属性helloworld在业务类中命名必须一致,且有该属性的get/set方法

Xml代码  

  1. <bean id="test" class="com.test.Test">
  2. <property name="helloWorld" ref="hessianHelloWorldImpl"></property>
  3. </bean>

3.在Test.java中添加

private HessianHelloWorld helloWorld;

与get/set方法

Java代码  

  1. private HessianHelloWorld helloWorld;
  2. public HessianHelloWorld getHelloWorld() {
  3. return helloWorld;
  4. }
  5. public void setHelloWorld(HessianHelloWorld helloWorld) {
  6. this.helloWorld = helloWorld;
  7. }

配置文件方式结束

注意事项

在此过程中需要注意注解方式与配置文件配置方式混合使用(由于业务需求的不同,例如注解方式的情况下使用定时器时就存在混合使用的情况)时的命名规范,当使用注解方式时bean在spring bean容器中的id首字母小写的类全名,而通过配置文件配置时id为自定义。

如下实例为同时使用了注解方式与配置方式:

1.在spring配置文件中添加如下配置:

Xml代码  

  1. <bean id="helloWorld" class="com.impl.HessianHelloWorldImpl" />

2.在托管bean(HessianHelloWorldImpl)上添加注解

Java代码  

  1. @Controller
  2. public class HessianHelloWorldImpl implements HessianHelloWorld{}

这样HessianHelloWorldImpl在Spring的bean容器中注册了两个实例。即(helloWorld与hessianHelloWorldImpl)

3.在业务类(调用类)的属性上添加标注,即不通过在配置文件中配置hello对应的类,而通过标签自动匹配。

Java代码  

  1. @Autowired
  2. private HessianHelloWorld hello;

启动时会报

Java代码  

  1. nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException:
  2. No unique bean of type [com.HessianHelloWorld] is defined:
  3. expected single matching bean but found 2: [helloWorld, hessianHelloWorldImpl]

由于此处的指针名为hello,通过自动匹配的方式无法确认具体需要用到哪个实例

在混用的情况下需要对bean实例的命名与bean的名称管理。

上述情况不使用@Controller,直接在配置文件中注册bean(bean的id不为hello),即一个bean在配置文件中注册了两次。

Xml代码  

  1. <bean id="hessianHelloWorldImpl" class="com.remote.impl.HessianHelloWorldImpl"></bean>

也会出现同样的效果。

如果必须使用混用,可以在业务类(调用类)的属性名与bean容器中的名称相同

Java代码  

  1. @Autowired
  2. private HessianHelloWorld helloWorld;

或者去除@Autowired直接在spring的bean配置文件中指定业务类属性对应的实例名称

Xml代码  

  1. <bean id="test" class="com.test.Test">
  2. <property name="hello" ref="hessianHelloWorldImpl"></property>
  3. </bean>

常见错误:

通过配置文件配置bean的使用时

项目启动时报错:

Java代码  

  1. Cannot resolve reference to bean ‘hessianHelloWorldImpl‘ while setting bean property ‘hello‘;
  2. nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException:
  3. No bean named ‘hessianHelloWorldImpl‘ is defined

spring找不到该类名,需要检查spring配置文件中bean的配置,若使用标注的则需要检查

<context:component-scan base-package="com"/>
<mvc:annotation-driven/>

是否已经添加

当业务调用类中使用标签时(@Autowired),可能在启动时不会报错,但是调用时会出现空指针异常,也可能是因为和上面的情况一样未指定bean的缘故

时间: 2024-10-14 04:32:14

Spring注解式与配置文件式的相关文章

Spring 注解方式引入配置文件

配置文件,我以两种为例,一种是引入Spring的XML文件,另外一种是.properties的键值对文件: 一.引入Spring XML的注解是@ImportResource @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Documented public @interface ImportResource @ImportResource有三个属性,value.locations.reader,准确来说是两个,loc

spring注解式参数校验

很痛苦遇到大量的参数进行校验,在业务中还要抛出异常或者返回异常时的校验信息,在代码中相当冗长,今天我们就来学习spring注解式参数校验. 其实就是:hibernate的validator. 开始啦...... 1.controller的bean加上@Validated就像这样 1 @ApiOperation(value = "用户登录接口", notes = "用户登录") 2 @PostMapping("/userLogin") 3 publ

MVC的验证(模型注解和非侵入式脚本的结合使用)

@HtmlHrlper方式创建的标签,会自动生成一些属性,其中一些属性就是关于验证 如图示例: 模型注解 通过模型注解后,MVC的验证,包括前台客户端,后台服务器的验证,MVC统统都做了包含,即使用户在客户端禁用Javascript,服务器也会将非法操作进行验证,当前前提是针对Model实体标识了注解的情况. 要能够正常进行非空等合法性验证必须做如下步骤(前提条件): 1.必须在实体的每个类型上加上Required特性,但是数字型的属性默认已经加上了. 2.必须在视图上导入如下脚本: <scri

(2)响应式流——响应式Spring的道法术器

本系列文章索引:<响应式Spring的道法术器>.前情提要: 什么是响应式编程 1.2 响应式流 上一节留了一个坑--为啥不用Java Stream来进行数据流的操作? 原因在于,若将其用于响应式编程中,是有局限性的.比如如下两个需要面对的问题: Web 应用具有I/O密集的特点,I/O阻塞会带来比较大的性能损失或资源浪费,我们需要一种异步非阻塞的响应式的库,而Java Stream是一种同步API. 假设我们要搭建从数据层到前端的一个变化传递管道,可能会遇到数据层每秒上千次的数据更新,而显然

(10)响应式宣言、响应式系统与响应式编程——响应式Spring的道法术器

本系列文章索引<响应式Spring的道法术器>前情提要 响应式编程 | 响应式流 1.5 响应式系统 1.5.1 响应式宣言 关注"响应式"的朋友不难搜索到关于"响应式宣言"的介绍,先上图: 这张图凝聚了许多大神的智慧和经验,见官网,中文版官网,如果你认可这个宣言的内容,还可以签下你的大名.虽然这些内容多概念而少实战,让人感觉是看教科书,但是字字千金,不时看一看都会有新的体会和收获. 这也是新时代男朋友的行为准则: Responsive,要及时响应,24

使用Spring注解获取配置文件信息

需要加载的配置文件内容(resource.properties): #FTP相关配置 #FTP的IP地址 FTP_ADDRESS=192.168.1.121 FTP_PORT=21 FTP_USERNAME=ftpuser FTP_PASSWORD=root FTP_BASE_PATH=/home/ftpuser/taotao/images #图片服务器的相关配置 #图片服务器的基础URL IMAGE_BASE_URL=http://192.168.1.121/images 实现在applica

spring注解详解

1. 使用Spring注解来注入属性 1.1. 使用注解以前我们是怎样注入属性的 类的实现: Java代码 public class UserManagerImpl implements UserManager { private UserDao userDao; public void setUserDao(UserDao userDao) { this.userDao = userDao; } ... } public class UserManagerImpl implements Use

Spring注解@Component、@Repository、@Service、@Controller区别

Spring注解@Component.@Repository.@Service.@Controller区别 Spring 2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository.@Service 和 @Controller.在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释分别和持久层.业务层和控制层(Web 层)相对应.虽然目前这 3 个注释和 @Comp

Spring注解简介

提供了基于注解(Annotation-based)的配置,我们可以通过注解的方式来完成注入依赖. 1. 使用注解方式配置 我们需要修改spring配置文件的头信息,修改部分红色标注,如下: <context:annotation-config/> <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/