真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Spring與JSR330中SolonIoc注解對比分析

本篇內(nèi)容介紹了“Spring與JSR330中Solon Ioc注解對比分析”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)公司主營東山網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app開發(fā)定制,東山h5重慶小程序開發(fā)搭建,東山網(wǎng)站營銷推廣歡迎東山等地區(qū)企業(yè)咨詢

注解對比

Solon 1.0.10SpringJSR 330
@XInject *@Autowired@Inject注入Bean(by type)
@XInject("name")@Qualifier+@Autowired@Qualifier+@Inject注入Bean(by name)
@XInject("${name}")@Value("${name}")-注入配置
@XBean *@Component@Named托管Bean
@XSingleton@Scope(“singleton”)@Singleton單例(Solon 默認是單例)
@XSingleton(false)@Scope(“prototype”)-非單例




@XEvent--內(nèi)部事件訂閱
@XInit *@PostConstruct-構(gòu)造完成并注入后的初始化
@XConfiguration@Configuration-配置類
@XController@Controller,@RestController-控制器類
@XMapping@RequestMapping,@GetMapping...-映射
  • Solon 的 @XInject 算是: Spring 的@Value、@Autowired、@Qualifier 三者的結(jié)合,但又不完全等價

  • Solon 托管的 Bean 初始化順序:new() - > @XInject - > @XInit -> Method@XBean

  • 注1:Method@XBean,只執(zhí)行一次(只在 @XConfiguration 里有效)

  • 注2:@XInject 的參數(shù)注入,只在Method@XBean時有效

部分用例說明

Solon 強調(diào)有節(jié)制的注解使用,尤其對于增加處理鏈路的都會節(jié)制。

  • @XBean(Bean的托管:一種基于name,一種基于類型;且只記錄第一次的注冊)

@XBean
public class UserService{
    @Db("db1")    //@Db為第三方擴展的注解
    BaseMapper mapper;
    
    UserModel getUser(long puid){
        return db1.selectById(puid);
    }
}

/* @XBean("userService")
public class UserService{
    @Db("db1") 
    BaseMapper mapper;
    
    UserModel getUser(long puid){
        return db1.selectById(puid);
    }
} */
  • @XController

@XSingleton(false)    //非單例注解
@XController
public class UserController{
    @XInject("${message.notnull}")
    String message;
    
    @XInject
    UserService userService
    
    @XMapping("/user/{puid}")
    public Object user(Long puid){
        if(puid == null){
            return message;
        }
        return userService.getUser(puid);
    }
}
  • @XConfiguration

@XConfiguration
public class Config {
    @XBean("db1")
    public DbContext db1(@XInject("${test.db1}") HikariDataSource dataSource) {
        String schema = XApp.cfg().get("test.db1.schema");
        return new DbContext(schema, dataSource);
    }
}
  • @XEvent (使用事件監(jiān)聽時,要確保有人發(fā)起事件)

//系統(tǒng)異常監(jiān)聽(這個系統(tǒng)會發(fā)的,還可以監(jiān)聽不同的異常)
//
@XEvent(Throwable.class)
public class ThrowableListener implements XEventListener {
    WaterLogger log = new WaterLogger("rock_log");

    @Override
    public void onEvent(Throwable err) {
        XContext ctx = XContext.current();

        if (ctx != null) {
            String _in = ONode.stringify(ctx.paramMap());

            log.error(ctx.path(), _in, err);
        }
    }
}

//Bean擴展監(jiān)聽(為Mybatis配置類,添加插件)
//
@XEvent(Configuration.class)
@XConfiguration
public class  SqlHelperMybatisAutoConfiguration implements XEventListener {

    //...
    
    @Override
    public void onEvent(Configuration configuration) {
       SqlHelperMybatisPlugin plugin = new SqlHelperMybatisPlugin();
       //...
       configuration.addInterceptor(plugin);
    }    
}

“Spring與JSR330中Solon Ioc注解對比分析”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!


分享文章:Spring與JSR330中SolonIoc注解對比分析
轉(zhuǎn)載來源:http://weahome.cn/article/pdccoc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部