spring常用语法

etl表达式解析

if (rawValue != null && rawValue.startsWith("#{") && entryValue.endsWith("}")) {

// assume it's spel

StandardEvaluationContext context = new StandardEvaluationContext();

context.setBeanResolver(new BeanFactoryResolver(beanFactory));

Expression expression = parser.parseExpression(entryValue,

new TemplateParserContext());

value = expression.getValue(context);

}

属性绑定
复制代码
Bindable<T> bindable = Bindable.of(this.configurable.getConfigClass());T t =new Binder(propertySources, null, conversionService)
      .bindOrCreate(configurationPropertyName, bindable, handler);

ApplicationContext context = SpringApplication.run(Application.class, args);

Binder binder = Binder.get(context.getEnvironment());

绑定简单配置

FooProperties foo = binder.bind("com.didispace", Bindable.of(FooProperties.class)).get();

System.out.println(foo.getFoo());

绑定List配置

List<String> post = binder.bind("com.didispace.post", Bindable.listOf(String.class)).get();

System.out.println(post);

List<PostInfo> posts=binder.bind("com.didispace.posts",Bindable.listOf(PostInfo.class)).get();

System.out.println(posts);

// 读取配置 System.out.println(context.getEnvironment().containsProperty("com.didispace.database-platform"));

System.out.println(context.getEnvironment().containsProperty("com.didispace.databasePlatform"));

配置绑定到Map对象
复制代码
Map<String, DsConfig> dsMap = binder.bind("demo.dynamic", Bindable.mapOf(String.class, DsConfig.class)).get();
System.out.println("Map Config: " + dsMap);
配置转换处理
复制代码
String decPwd = binder.bind("demo.enc.pwd", Bindable.of(String.class))
        .map(s -> new String(Base64Utils.decodeFromString(s))).get();
System.out.println("解码之后的数据是: " + decPwd);
注册绑定过程回调

String dec = binder.bindOrCreate("demo.enc.pwd", Bindable.of(String.class), new BindHandler() {

@Override

public <T> Bindable<T> onStart(ConfigurationPropertyName name, Bindable<T> target, BindContext context) {

System.out.println("开始绑定: " + name);

return BindHandler.super.onStart(name, target, context);

}

@Override

public Object onSuccess(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) {

System.out.println("绑定成功!" + name + " val:" + target.getValue() + " res: " + result);

return new String(Base64Utils.decodeFromString((String) result));

}

@Override

public Object onCreate(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) {

System.out.println("创建: " + name + " val:" + target.getValue() + " res: " + result);

return BindHandler.super.onCreate(name, target, context, result);

}

@Override

public Object onFailure(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Exception error) throws Exception {

System.out.println("绑定失败! " + name + " " + error.getMessage());

return BindHandler.super.onFailure(name, target, context, error);

}

@Override

public void onFinish(ConfigurationPropertyName name, Bindable<?> target, BindContext context, Object result) throws Exception {

System.out.println("绑定结束: " + name + " val:" + target.getValue() + " res: " + result);

BindHandler.super.onFinish(name, target, context, result);

}

});

System.out.println("绑定回调: " + dec);

相关推荐
morning_judger1 天前
【设计模式系列】原型模式(十一)
java·设计模式·原型模式
飞升不如收破烂~3 天前
在Spring框架中,容器管理的bean可以有不同的作用域(scope),其中最常用的两种是单例(singleton)和原型(prototype)。
spring·单例模式·原型模式
安泽13143 天前
【修订中】js 中apply call bind 用法
原型模式
Komorebi_99994 天前
JavaScript 判断数据类型有哪些方法?
开发语言·javascript·原型模式
无敌岩雀4 天前
C++设计模式创建型模式———原型模式
c++·设计模式·原型模式
一条晒干的咸魚4 天前
【Web前端】JavaScript 对象原型与继承机制
开发语言·前端·javascript·原型模式·web前端
shinelord明4 天前
【再谈设计模式】原型模式~复制的魔法师
开发语言·设计模式·原型模式
wrx繁星点点6 天前
解释器模式:有效处理语言的设计模式
java·开发语言·spring·servlet·设计模式·解释器模式·原型模式
wrx繁星点点8 天前
原型模式:高效的对象克隆解决方案
数据结构·spring·spring cloud·java-ee·maven·intellij-idea·原型模式
csdn小瓯9 天前
前端八股文第一篇
前端·原型模式