快速业务通道

Spring的@Autowired问题 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17

Spring的@Autowired问题

时间:2011-05-15 熔岩

Spring2之后,出现很多注解,这些注解让Spring的配置变得混乱起来,因此 ,别人力排Spring的注解。

注解引发的问题:

1、缺乏明确的配置导致程序的依赖注入关系不明确。

2、不利于模块化的装配。

3、给维护带来麻烦,因为你要根据源代码找到依赖关系。

4、通用性不好。如果你哪天抛开了Spring,换了别的Ioc容器,那么你的注解 要一个个的删除。

但是很多傻X级的程序员还偶尔给你用点,或半用半不用,当你问及的时候, 还一本正经的说某某某书上就是这么用的!!!如果你接手他的代码,会很郁闷 。

这里写个例子,为的是看懂带注解的代码,不是推崇注解有多高级,真没必要 。

package lavasoft.springstu.anno; /** * 一个普通的Bean * * @author leizhimin 2009-12-23 10:40:38 */ public class Foo {          private String name;          public Foo(String name) {                  this.name = name;          }          public String getName() {                  return name;          }          public void setName(String name) {                  this.name = name;          } }

package lavasoft.springstu.anno; import org.springframework.beans.factory.annotation.Autowired; /** * Spring自动装配的注解 * * @author leizhimin 2009-12-23 10:41:55 */ public class Bar {          @Autowired(required = true)          private Foo foo;          public void f1() {                  System.out.println(foo.getName ());          } }

Spring的@Autowired问题(2)

时间:2011-05-15 熔岩

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"               xmlns:context="http://www.springframework.org/schema/context"               xsi:schemaLocation="http://www.springframework.org/schema/beans                        http://www.springframework.org/schema/beans/spring-beans-2.5.xsd                        http://www.springframework.org/schema/context                        http://www.springframework.org/schema/context/spring-context- 2.5.xsd">          <!-- 引用@Autowired必须定义这个bean -->          <bean  class="org.springframework.beans.factory.annotation.AutowiredAnnotation BeanPostProcessor"/>          <!-- 通过构造方法装配的Bean -->          <bean id="foo" class="lavasoft.springstu.anno.Foo">                  <constructor-arg index="0" type="java.lang.String"  value="aaaa"/>          </bean>          <!-- 通过注解装配的Bean,我还以为它和Foo没关系呢 -->          <bean id="bar" class="lavasoft.springstu.anno.Bar"/> </beans>

package lavasoft.springstu.anno; import org.springframework.context.ApplicationContext; import  org.springframework.context.support.ClassPathXmlApplicationContext; /** * 测试自动装配Bean * * @author leizhimin 2009-12-23 10:55:35 */ public class Test1 {          public static void main(String[] args) {                  ApplicationContext ctx = new  ClassPathXmlApplicationContext("lavasoft/springstu/anno/cfg1.xml");                  Bar bar = (Bar) ctx.getBean ("bar");                  bar.f1();          } }

运行结果:

aaaa Process finished with exit code 0

从上面的代码中看到,Spring的注解使得配置文件的逻辑很混乱,如果项目中 有大量的类似注解,那维护起来就很困难了。

建议不要使用!

出处:http://lavasoft.blog.51cto.com/62575/247831

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号