在Spring JavaConfig中,我可以定义属性源并注入Environment
@PropertySource("classpath:application.properties")
@Inject private Environment environment;
如果在xml中,该怎么办?我正在使用context:property-
placeholder,并在JavaConfig类@ImportResource上导入xml。但是我无法使用environment.getProperty(“
xx”)检索在属性文件中定义的属性
<context:property-placeholder location="classpath:application.properties" />
AFAIK,无法通过纯XML做到这一点。无论如何,这是我今天早上做的一些代码:
一,测试:
public class EnvironmentTests {
@Test
public void addPropertiesToEnvironmentTest() {
ApplicationContext context = new ClassPathXmlApplicationContext(
"testContext.xml");
Environment environment = context.getEnvironment();
String world = environment.getProperty("hello");
assertNotNull(world);
assertEquals("world", world);
System.out.println("Hello " + world);
}
}
然后上课:
public class PropertySourcesAdderBean implements InitializingBean,
ApplicationContextAware {
private Properties properties;
private ApplicationContext applicationContext;
public PropertySourcesAdderBean() {
}
public void afterPropertiesSet() throws Exception {
PropertiesPropertySource propertySource = new PropertiesPropertySource(
"helloWorldProps", this.properties);
ConfigurableEnvironment environment = (ConfigurableEnvironment) this.applicationContext
.getEnvironment();
environment.getPropertySources().addFirst(propertySource);
}
public Properties getProperties() {
return properties;
}
public void setProperties(Properties properties) {
this.properties = properties;
}
public void setApplicationContext(ApplicationContext applicationContext)
throws BeansException {
this.applicationContext = applicationContext;
}
}
和testContext.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans ...>
<util:properties id="props" location="classpath:props.properties" />
<bean id="propertySources" class="org.mael.stackoverflow.testing.PropertySourcesAdderBean">
<property name="properties" ref="props" />
</bean>
</beans>
和props.properties文件:
hello=world
这是很简单,只需使用一个ApplicationContextAware
bean并获得ConfigurableEnvironment
从(Web)ApplicationContext
。然后只需PropertiesPropertySource
在MutablePropertySources
我正在使用@PropertySource配置一个配置类: 我现在正在使用Spring Cloud Config将配置外部化到Git:所有application.yml文件都已迁移。但是,我不知道这是否可能,以及如何将属性文件外部化,就像在@PropertySource中声明的那样。 我所做的:我尝试在Git中将mongo-prod.properties重命名为application-prod.pr
我正在使用Spring Boot创建一个访问数据库的简单web应用程序。通过在中设置属性,我利用了DataSource的自动配置功能。这一切都很出色,而且非常快--伟大的工作伙计们@Spring! 我公司的政策是不应该有明文密码。因此,我需要对进行加密。经过一番深入研究,我决定创建一个实现,该实现创建一个jasypt,如下所示: 然后,我用文件将其打包到它自己的jar中,如下所示: 当在maven
我试图创建一个音频捕获活动,所以我从android文档中复制了这个类,如下所示 在我的xml页面中,我试图创建一个id为麦克风的RecordButton。类似这样的东西 现在,当我尝试运行该应用程序时,会出现以下输出
我在带有ehacache2.1.0库的Webphere 7. x的生产环境中有一个问题,web容器的线程都在等待咨询或插入缓存中。 这是所有webcontainer线程挂起时的转储: 我在ehache上使用Spring作为抽象层,以编程方式获取/放入缓存的代码没有什么特别的。 缓存的配置如下: 可以访问缓存的代码: ehache配置文件:
问题内容: 使用 源activate env_name 激活Conda env 。 如何激活pycharm中的环境? 问题答案: 最好的PyCharm特定答案是wasabi的答案(下)。 打开 pycharm / preferences / project / Project Interpreter 并检查现有的解释器。Conda环境可能已经在此处列出。 如果不存在,则可以使用“创建Conda E
我试图构建一个使用嵌入式OrientDB(当前为“Memory:”)图形数据库的应用程序。我用的是OrientDB2.2 orientdb-graphdb不应该依赖于一个合适的包,或者包括并导出类吗?