Java Doc for PropertyPlaceholderConfigurer.java in  » J2EE » spring-framework-2.0.6 » org » springframework » beans » factory » config » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » spring framework 2.0.6 » org.springframework.beans.factory.config 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.springframework.beans.factory.config.PropertyResourceConfigurer
   org.springframework.beans.factory.config.PropertyPlaceholderConfigurer

All known Subclasses:   org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer,  org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer,
PropertyPlaceholderConfigurer
public class PropertyPlaceholderConfigurer extends PropertyResourceConfigurer implements BeanNameAware,BeanFactoryAware(Code)
A property resource configurer that resolves placeholders in bean property values of context definitions. It pulls values from a properties file into bean definitions.

The default placeholder syntax follows the Ant / Log4J / JSP EL style:

${...}
Example XML context definition:
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
 <property name="driverClassName"><value>${driver}</value></property>
 <property name="url"><value>jdbc:${dbname}</value></property>
 </bean>
Example properties file:
driver=com.mysql.jdbc.Driver
 dbname=mysql:mydb
PropertyPlaceholderConfigurer checks simple property values, lists, maps, props, and bean names in bean references. Furthermore, placeholder values can also cross-reference other placeholders, like:
rootPath=myrootdir
 subPath=${rootPath}/subdir
In contrast to PropertyOverrideConfigurer, this configurer allows to fill in explicit placeholders in context definitions. Therefore, the original definition cannot specify any default values for such bean properties, and the placeholder properties file is supposed to contain an entry for each defined placeholder.

If a configurer cannot resolve a placeholder, a BeanDefinitionStoreException will be thrown. If you want to check against multiple properties files, specify multiple resources via the "locations" setting. You can also define multiple PropertyPlaceholderConfigurers, each with its own placeholder syntax.

Default property values can be defined via "properties", to make overriding definitions in properties files optional. A configurer will also check against system properties (e.g. "user.dir") if it cannot resolve a placeholder with any of the specified properties. This can be customized via "systemPropertiesMode".

Note that the context definition is aware of being incomplete; this is immediately obvious to users when looking at the XML definition file. Hence, placeholders have to be resolved; any desired defaults have to be defined as placeholder values as well (for example in a default properties file).

Property values can be converted after reading them in, through overriding the PropertyPlaceholderConfigurer.convertPropertyValue method. For example, encrypted values can be detected and decrypted accordingly before processing them.
author:
   Juergen Hoeller
since:
   02.10.2003
See Also:   PropertyPlaceholderConfigurer.setLocations
See Also:   PropertyPlaceholderConfigurer.setProperties
See Also:   PropertyPlaceholderConfigurer.setPlaceholderPrefix
See Also:   PropertyPlaceholderConfigurer.setPlaceholderSuffix
See Also:   PropertyPlaceholderConfigurer.setSystemPropertiesModeName
See Also:   System.getProperty(String)
See Also:   PropertyPlaceholderConfigurer.convertPropertyValue
See Also:   PropertyOverrideConfigurer



Field Summary
final public static  StringDEFAULT_PLACEHOLDER_PREFIX
    
final public static  StringDEFAULT_PLACEHOLDER_SUFFIX
    
final public static  intSYSTEM_PROPERTIES_MODE_FALLBACK
     Check system properties if not resolvable in the specified properties.
final public static  intSYSTEM_PROPERTIES_MODE_NEVER
     Never check system properties.
final public static  intSYSTEM_PROPERTIES_MODE_OVERRIDE
     Check system properties first, before trying the specified properties.


Method Summary
protected  StringparseStringValue(String strVal, Properties props, Set visitedPlaceholders)
     Parse the given String value recursively, to be able to resolve nested placeholders (when resolved property values in turn contain placeholders again).
Parameters:
  strVal - the String value to parse
Parameters:
  props - the Properties to resolve placeholders against
Parameters:
  visitedPlaceholders - the placeholders that have already been visitedduring the current resolution attempt (used to detect circular referencesbetween placeholders).
protected  voidprocessProperties(ConfigurableListableBeanFactory beanFactoryToProcess, Properties props)
    
protected  StringresolvePlaceholder(String placeholder, Properties props, int systemPropertiesMode)
     Resolve the given placeholder using the given properties, performing a system properties check according to the given mode.
protected  StringresolvePlaceholder(String placeholder, Properties props)
     Resolve the given placeholder using the given properties.
protected  StringresolveSystemProperty(String key)
     Resolve the given key as JVM system property, and optionally also as system environment variable if no matching system property has been found.
public  voidsetBeanFactory(BeanFactory beanFactory)
     Only necessary to check that we're not parsing our own bean definition, to avoid failing on unresolvable placeholders in properties file locations.
public  voidsetBeanName(String beanName)
     Only necessary to check that we're not parsing our own bean definition, to avoid failing on unresolvable placeholders in properties file locations.
public  voidsetIgnoreUnresolvablePlaceholders(boolean ignoreUnresolvablePlaceholders)
     Set whether to ignore unresolvable placeholders.
public  voidsetPlaceholderPrefix(String placeholderPrefix)
     Set the prefix that a placeholder string starts with.
public  voidsetPlaceholderSuffix(String placeholderSuffix)
     Set the suffix that a placeholder string ends with.
public  voidsetSearchSystemEnvironment(boolean searchSystemEnvironment)
     Set whether to search for a matching system environment variable if no matching system property has been found.
public  voidsetSystemPropertiesMode(int systemPropertiesMode)
     Set how to check system properties: as fallback, as override, or never. For example, will resolve ${user.dir} to the "user.dir" system property.

The default is "fallback": If not being able to resolve a placeholder with the specified properties, a system property will be tried. "override" will check for a system property first, before trying the specified properties.

public  voidsetSystemPropertiesModeName(String constantName)
     Set the system property mode by the name of the corresponding constant, e.g.

Field Detail
DEFAULT_PLACEHOLDER_PREFIX
final public static String DEFAULT_PLACEHOLDER_PREFIX(Code)
Default placeholder prefix: "${"



DEFAULT_PLACEHOLDER_SUFFIX
final public static String DEFAULT_PLACEHOLDER_SUFFIX(Code)
Default placeholder suffix: "}"



SYSTEM_PROPERTIES_MODE_FALLBACK
final public static int SYSTEM_PROPERTIES_MODE_FALLBACK(Code)
Check system properties if not resolvable in the specified properties. This is the default.



SYSTEM_PROPERTIES_MODE_NEVER
final public static int SYSTEM_PROPERTIES_MODE_NEVER(Code)
Never check system properties.



SYSTEM_PROPERTIES_MODE_OVERRIDE
final public static int SYSTEM_PROPERTIES_MODE_OVERRIDE(Code)
Check system properties first, before trying the specified properties. This allows system properties to override any other property source.





Method Detail
parseStringValue
protected String parseStringValue(String strVal, Properties props, Set visitedPlaceholders) throws BeanDefinitionStoreException(Code)
Parse the given String value recursively, to be able to resolve nested placeholders (when resolved property values in turn contain placeholders again).
Parameters:
  strVal - the String value to parse
Parameters:
  props - the Properties to resolve placeholders against
Parameters:
  visitedPlaceholders - the placeholders that have already been visitedduring the current resolution attempt (used to detect circular referencesbetween placeholders). Only non-null if we're parsing a nested placeholder.
throws:
  BeanDefinitionStoreException - if invalid values are encountered
See Also:   PropertyPlaceholderConfigurer.resolvePlaceholder(String,java.util.Properties,int)



processProperties
protected void processProperties(ConfigurableListableBeanFactory beanFactoryToProcess, Properties props) throws BeansException(Code)



resolvePlaceholder
protected String resolvePlaceholder(String placeholder, Properties props, int systemPropertiesMode)(Code)
Resolve the given placeholder using the given properties, performing a system properties check according to the given mode.

Default implementation delegates to resolvePlaceholder (placeholder, props) before/after the system properties check.

Subclasses can override this for custom resolution strategies, including customized points for the system properties check.
Parameters:
  placeholder - the placeholder to resolve
Parameters:
  props - the merged properties of this configurer
Parameters:
  systemPropertiesMode - the system properties mode,according to the constants in this class the resolved value, of null if none
See Also:   PropertyPlaceholderConfigurer.setSystemPropertiesMode
See Also:   System.getProperty
See Also:   PropertyPlaceholderConfigurer.resolvePlaceholder(String,java.util.Properties)




resolvePlaceholder
protected String resolvePlaceholder(String placeholder, Properties props)(Code)
Resolve the given placeholder using the given properties. The default implementation simply checks for a corresponding property key.

Subclasses can override this for customized placeholder-to-key mappings or custom resolution strategies, possibly just using the given properties as fallback.

Note that system properties will still be checked before respectively after this method is invoked, according to the system properties mode.
Parameters:
  placeholder - the placeholder to resolve
Parameters:
  props - the merged properties of this configurer the resolved value, of null if none
See Also:   PropertyPlaceholderConfigurer.setSystemPropertiesMode




resolveSystemProperty
protected String resolveSystemProperty(String key)(Code)
Resolve the given key as JVM system property, and optionally also as system environment variable if no matching system property has been found.
Parameters:
  key - the placeholder to resolve as system property key the system property value, or null if not found
See Also:   PropertyPlaceholderConfigurer.setSearchSystemEnvironment
See Also:   java.lang.System.getProperty(String)
See Also:   java.lang.System.getenv(String)



setBeanFactory
public void setBeanFactory(BeanFactory beanFactory)(Code)
Only necessary to check that we're not parsing our own bean definition, to avoid failing on unresolvable placeholders in properties file locations. The latter case can happen with placeholders for system properties in resource locations.
See Also:   PropertyPlaceholderConfigurer.setLocations
See Also:   org.springframework.core.io.ResourceEditor



setBeanName
public void setBeanName(String beanName)(Code)
Only necessary to check that we're not parsing our own bean definition, to avoid failing on unresolvable placeholders in properties file locations. The latter case can happen with placeholders for system properties in resource locations.
See Also:   PropertyPlaceholderConfigurer.setLocations
See Also:   org.springframework.core.io.ResourceEditor



setIgnoreUnresolvablePlaceholders
public void setIgnoreUnresolvablePlaceholders(boolean ignoreUnresolvablePlaceholders)(Code)
Set whether to ignore unresolvable placeholders. Default is "false": An exception will be thrown if a placeholder cannot be resolved.



setPlaceholderPrefix
public void setPlaceholderPrefix(String placeholderPrefix)(Code)
Set the prefix that a placeholder string starts with. The default is "${".
See Also:   PropertyPlaceholderConfigurer.DEFAULT_PLACEHOLDER_PREFIX



setPlaceholderSuffix
public void setPlaceholderSuffix(String placeholderSuffix)(Code)
Set the suffix that a placeholder string ends with. The default is "}".
See Also:   PropertyPlaceholderConfigurer.DEFAULT_PLACEHOLDER_SUFFIX



setSearchSystemEnvironment
public void setSearchSystemEnvironment(boolean searchSystemEnvironment)(Code)
Set whether to search for a matching system environment variable if no matching system property has been found. Only applied when "systemPropertyMode" is active (i.e. "fallback" or "override"), right after checking JVM system properties.

Default is "true". Switch this setting off to never resolve placeholders against system environment variables. Note that it is generally recommended to pass external values in as JVM system properties: This can easily be achieved in a startup script, even for existing environment variables.

NOTE: Access to environment variables does not work on the Sun VM 1.4, where the corresponding System.getenv support was disabled - before it eventually got re-enabled for the Sun VM 1.5. Please upgrade to 1.5 (or higher) if you intend to rely on the environment variable support.
See Also:   PropertyPlaceholderConfigurer.setSystemPropertiesMode
See Also:   java.lang.System.getProperty(String)
See Also:   java.lang.System.getenv(String)




setSystemPropertiesMode
public void setSystemPropertiesMode(int systemPropertiesMode)(Code)
Set how to check system properties: as fallback, as override, or never. For example, will resolve ${user.dir} to the "user.dir" system property.

The default is "fallback": If not being able to resolve a placeholder with the specified properties, a system property will be tried. "override" will check for a system property first, before trying the specified properties. "never" will not check system properties at all.
See Also:   PropertyPlaceholderConfigurer.SYSTEM_PROPERTIES_MODE_NEVER
See Also:   PropertyPlaceholderConfigurer.SYSTEM_PROPERTIES_MODE_FALLBACK
See Also:   PropertyPlaceholderConfigurer.SYSTEM_PROPERTIES_MODE_OVERRIDE
See Also:   PropertyPlaceholderConfigurer.setSystemPropertiesModeName




setSystemPropertiesModeName
public void setSystemPropertiesModeName(String constantName) throws IllegalArgumentException(Code)
Set the system property mode by the name of the corresponding constant, e.g. "SYSTEM_PROPERTIES_MODE_OVERRIDE".
Parameters:
  constantName - name of the constant
throws:
  java.lang.IllegalArgumentException - if an invalid constant was specified
See Also:   PropertyPlaceholderConfigurer.setSystemPropertiesMode



Methods inherited from org.springframework.beans.factory.config.PropertyResourceConfigurer
protected void convertProperties(Properties props)(Code)(Java Doc)
protected String convertPropertyValue(String originalValue)(Code)(Java Doc)
public int getOrder()(Code)(Java Doc)
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException(Code)(Java Doc)
abstract protected void processProperties(ConfigurableListableBeanFactory beanFactory, Properties props) throws BeansException(Code)(Java Doc)
public void setOrder(int order)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.