配置beans容器(@Configuration)

Exisi 2022-11-28 08:11:44
Categories: Tags:

 

参数

描述

value

默认为"",用于指定类名,默认为当前类

proxyBeanMethods

默认为true,多次调用容器中的bean对象时总是在容器中寻找,找不到就创建

当为false时,调用容器中的bean对象时总是创建一个新的对象

示例

@Configuration        

public class MainConfig{          

    //properties文件里配置        

    @Value("${wx_appid}")            

    public String appid;

 

    protected MainConfig() {}

   

   @Bean            

    public WxMpService wxMpService(){

        WxMpService wxMpService = new WxMpServiceImpl();

        wxMpService.setWxMpConfigStorage(wxMpConfigStorage());

     return wxMpService;

     }

}