首页 > 其他 > 详细

使用service&scope 进行注入

时间:2017-08-10 18:35:33      阅读:342      评论:0      收藏:0      [点我收藏+]

 

@service 声明该类为一个bean,bean的名称为类名首字母小写(customerService)

@Scope("prototype")则声明为一个原子类型,既每个getbean方法返回一个实例

package spring_service;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;

/**
 * Created by luozhitao on 2017/8/10.
 */
@Service
@Scope("prototype")
public class CustomerService {

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    private String message;


}
package spring_service;

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

/**
 * Created by luozhitao on 2017/8/10.
 */
public class service_app {

    public static void main(String [] args){

        ApplicationContext context=new ClassPathXmlApplicationContext("bean_service.xml");

        CustomerService customerService=(CustomerService)context.getBean("customerService");

        customerService.setMessage("spring server method");

        System.out.println(customerService.getMessage());




    }


}
<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">

    <context:component-scan base-package="spring_service" />

</beans>

bean.xml看起来就非常简练。

使用service&scope 进行注入

原文:http://www.cnblogs.com/luo-mao/p/7340600.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!