使用字符串生成Bean,Resource 到Context
Posted liangwen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用字符串生成Bean,Resource 到Context相关的知识,希望对你有一定的参考价值。
项目中需要验证一个XML文件生成的Bean是否正确,按照正常思路,自然是生成文件,再加载,try-catch一下
如:
// 省略try-catch // 使用临时文件的位置 File tempFile = new File(FileUtils.getTempDirectoryPath()).concat("文件名"); // 写文件 FileUtils.write(tempFile,dalFile,"UTF-8"); // 获取Context ConfigurableApplicationContext contex = null; contex.getBean(类型.class);
感觉这样会生成很多文件,(虽然是同一个,但是会有不少IO)
有没有直接使用这个String呢?翻了Google、stackoverflow总算找到了,吐槽下百度,解决问题千万不能指望它
GenericXmlApplicationContext context = new GenericXmlApplicationContext(new ByteArrayResource("文件内容".getBytes())); contex.getBean(类型.class);
简单多了
以上是关于使用字符串生成Bean,Resource 到Context的主要内容,如果未能解决你的问题,请参考以下文章
spring 3.2 注解注入普通BEAN的@Resource 总是得到空指针,怎么解决?
SpringIOC的bean自动注解(Resource,Autowired)
SpringIOC的bean自动注解(Resource,Autowired)