SpringBoot 使用ApplicationContext 及 getbean的兩種方式
第一種:容器載入時設定
public class ProxyApplication {
public static void main(String[] args) {
ApplicationContext applicationContext = SpringApplication.run(ProxyApplication.class, args);
SpringContextUtil.setApplicationContext(applicationContext);
}
}
例項化SpringContextUtil
public class SpringContextUtil {
// Spring應用上下文環境
private static ApplicationContext applicationContext;
/**
* 實現ApplicationContextAware介面的回撥方法,設定上下文環境
*/
public static void setApplicationContext(ApplicationContext applicationContext)throws BeansException {
SpringContextUtil.applicationContext = applicationContext;
}
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
/**
* 根據beanId返回Spring中的例項
* @Date 2019-08-07 17:36
* @param
* @return
**/
public static Object getBean(String beanId) throws BeansException {
return applicationContext.getBean(beanId);
}
}
使用場景:實體中初始化資訊,載入類資訊到容器中
@Data
@Configuration
public class AutoLogonConfig {
private boolean autoLogon = false;
private String loginName = "";
private String password = "";
private String ip = "";
public AutoLogonConfig(@Value("${loginFilePath}") String loginFilePath){
Yaml yaml = new Yaml();
InputStream in;
try {
File file = new File(loginFilePath);
in = new FileInputStream(file);
Map map = (Map) yaml.load(in);
Pub.loginFilePath = loginFilePath;
this.autoLogon=(boolean) map.get("autoLogon");
this.loginName=(String) map.get("loginName");
this.password=(String) map.get("password");
this.ip=(String) map.get("ip");
} catch (IOException e) {
e.printStackTrace();
}
}
}
AutoLogonConfig autoLogonConfig = (AutoLogonConfig) SpringContextUtil.getBean("autoLogonConfig");
第二種:繼承ApplicationContextAware
@Component
public class ApplicationContextUtil implements ApplicationContextAware {
/**
* 獲取bean
* @param name
* @return
* @throws BeansException
*/
public static Object getBean(String name) throws BeansException {
Object o = applicationContext.getBean(name);
return o;
}
private static ApplicationContext applicationContext;
/**
* Set the ApplicationContext that this object runs in.
* Normally this call will be used to initialize the object.
* <p>Invoked after population of normal bean properties but before an init callback such
* as {@link InitializingBean#afterPropertiesSet()}
* or a custom init-method. Invoked after {@link ResourceLoaderAware#setResourceLoader},
* {@link ApplicationEventPublisherAware#setApplicationEventPublisher} and
* {@link MessageSourceAware}, if applicable.
*
* @param applicationContext the ApplicationContext object to be used by this object
* @throws ApplicationContextException in case of context initialization errors
* @throws BeansException if thrown by application context methods
* @see BeanInitializationException
*/
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
ApplicationContextUtil.applicationContext = applicationContext;
}
public static ApplicationContext getApplicationContext(){
return applicationContext;
}
}
使用場景:需要通過反射機制
public Map<String,String> functionOperation(ProxyParamDTO params, OperationEntity operationEntity) throws Exception{
Map<String,String> m = null;
String className;
String functionName;
// [0]:ClassName, [1];functionName
String[] arr = getFunctionName(operationEntity);
className = arr[0];
functionName = arr[1];
operationEntity.setParamDto(params);
try {
// getBean
Object o = ApplicationContextUtil.getBean(className);
// getClass
Class<?> clazz = o.getClass();
// getMethod by class
Method method = clazz.getMethod(functionName, OperationEntity.class);
// execute method and get returned value
m = (HashMap) method.invoke(o, operationEntity);
System.out.println(operationEntity.getOperationOrder() + " : " + method.getName());
} catch (NoSuchMethodException | BeansException e) {
otherFunctions(operationEntity, arr);
} catch (IllegalAccessException | InvocationTargetException e) {
e.printStackTrace();
throw e;
}
return m;
}
相關文章
- springboot使用webSocket的兩種方式Spring BootWeb
- ApplicationContext中getBean詳解APPContextBean
- 在springboot中使用Mybatis Generator的兩種方式Spring BootMyBatis
- ChatTTS的兩種使用方式TTS
- activemq的兩種基本通訊方式的使用及總結MQ
- SpringBoot實現熱部署兩種方式!Spring Boot熱部署
- 兩種include方式及filter中的dispatcher解析Filter
- Spring - 獲取ApplicationContext的幾種方式SpringAPPContext
- Redis詳解 - SpringBoot整合Redis,RedisTemplate和註解兩種方式的使用RedisSpring Boot
- ubuntu建立使用者的兩種方式Ubuntu
- MyBatis 與 SpringBoot 整合:註解和xml兩種使用方式介紹MyBatisSpring BootXML
- springboot設定cors跨域請求的兩種方式Spring BootCORS跨域
- 使用GoldenGate初始化的兩種方式Go
- Laravel 的觀察者使用記錄與兩種方式Laravel
- JS 垃圾回收的兩種方式JS
- Docker打包映象的兩種方式Docker
- sparkrdd轉dataframe的兩種方式Spark
- 提交Application的兩種方式APP
- 建立Session物件的兩種方式Session物件
- FutureTask的用法及兩種常用的使用場景
- Springboot中使用執行緒池的三種方式Spring Boot執行緒
- Springboot啟動了哪些bean?這兩種方式可以獲取Spring BootBean
- zabbix agent 的兩種安裝方式
- HTTP代理的兩種連線方式HTTP
- redis的php驅動兩種方式RedisPHP
- JavaScript 函式的兩種宣告方式JavaScript函式
- RAC時間同步的兩種方式
- SSH綜合查詢的兩種方式
- easyUI 初始化的兩種方式UI
- 建立oracle dblink 的兩種方式Oracle
- 安裝aab包的兩種方式
- 多執行緒的建立 兩種方式以及使用建議執行緒
- Oracle兩種備份方式Oracle
- 隱藏元素兩種方式
- SpringBoot應用使用自定義的ApplicationContext實現類Spring BootAPPContext
- 談談Shiro的原理及在SSM和SpringBoot兩種環境下的使用姿勢(下篇)SSMSpring Boot
- 談談Shiro的原理及在SSM和SpringBoot兩種環境下的使用姿勢(上篇)SSMSpring Boot
- Golang切片的三種簡單使用方式及區別Golang