Spring的Annotation配置

可以在-hibernate.xml配置文件中设置使用SpringAnnotation的配置。

<beansxmlns="http://www.springframework.org/schema/beans"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:p="http://www.springframework.org/schema/p"

    xmlns:context="http://www.springframework.org/schema/context"

    xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsd

    http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsd">

 

 

加入下面的配置,设置允许使用Annotation,并设置Annotation作用的包范围,其中要包括dao.impl,service.impl和action。

<context:annotation-config></context:annotation-config>

    <context:component-scan     base-package="org.liky.ssh.back.action,org.liky.ssh.back.service.     impl,org.liky.ssh.dao.impl">

</context:component-scan>

 

此时可以将-dao,-service,-struts三个配置文件删除。

 

 

打开DAOImpl文件,加入以下Annotation配置。

// 表示该类自动配置成为一个Spring<bean>,id为类名首字母小写

@Component

public classNewsDAOImpl extends HibernateDaoSupportimplements INewsDAO {

    // 自动将hibernateTemplate通过构造方法注入到DAOimpl.

    @Autowired

    publicNewsDAOImpl(HibernateTemplate hibernateTemplate) {

       super.setHibernateTemplate(hibernateTemplate);

    }

 

 

同时,Service中也要修改这个内容

@Service

public class NewsServiceImplimplements INewsService {

    privateINewsDAOnewsdao;

//将newsDAOImpl注入到DAOServiceImpl

    @Resource(name="newsDAOImpl")

    public voidsetNewsdao(INewsDAO newsdao) {

       this.newsdao =newsdao;

    }

}

 

 

在Action中配置

// 也表示是一个<bean>

@Controller

// 不使用单例设计

@Scope(value= "prototype")

public class NewsActionextends ActionSupport {

    @Resource(name= "newsServiceImpl")

    public voidsetService(INewsService service) {

       this.service =service;

    }

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值