Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@874 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
3 changed files with 44 additions and 0 deletions
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
hostname=localhost |
||||
foo=a |
||||
bar=b |
||||
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<beans xmlns="http://www.springframework.org/schema/beans" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd |
||||
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd |
||||
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd" |
||||
xmlns:context="http://www.springframework.org/schema/context" |
||||
xmlns:util="http://www.springframework.org/schema/util"> |
||||
|
||||
<context:annotation-config/> |
||||
|
||||
<util:properties id="myProps" location="classpath:org/springframework/context/annotation/configuration/AutowiredConfigurationTests-custom.properties"/> |
||||
|
||||
<bean class="org.springframework.context.annotation.configuration.AutowiredConfigurationTests$PropertiesConfig"/> |
||||
|
||||
</beans> |
||||
Loading…
Reference in new issue