Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. 2014-02-19 15:47:02,106 - WARN org.springframework.core.io.support.PropertiesLoaderSupport - Could not load properties from class
  2. path resource [indexing.properties]: class path resource [indexing.properties] cannot be opened because it does not exist
  3. 2014-02-19 15:47:02,110 - WARN org.springframework.core.io.support.PropertiesLoaderSupport - Could not load properties from class
  4. path resource [user-service.properties]: class path resource [user-service.properties] cannot be opened because it does not exist
  5. 2014-02-19 15:47:05,169 - WARN com.cubeia.backoffice.users.Configuration - No user-service.properties configuration file found. U
  6. sing default.
  7.  
  8. <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  9. <property name="locations">
  10. <list>
  11. <value>classpath:default-indexing.properties</value>
  12. <value>classpath:indexing.properties</value>
  13. </list>
  14. </property>
  15. <property name="ignoreResourceNotFound" value="true" />
  16. </bean>
  17.  
  18. <util:properties id="emailProperties" location="classpath:../email.properties"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement