You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@syncope.apache.org by Ajith Perur <aj...@gmail.com> on 2015/07/24 13:42:26 UTC

LDAP roles not getting fetched for authorization,but username and password authentication is happening

Please help me with fetching roles from ldap
this is my security.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:security="http://www.springframework.org/schema/security"
   xsi:schemaLocation="http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.2.xsd
        http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans.xsd">


<security:global-method-security pre-post-annotations="enabled" />

<security:http pattern="/resources/**" security="none" />

<security:http auto-config="true" use-expressions="true">

<security:intercept-url pattern="/" access="permitAll" />
<security:intercept-url pattern="/login.do" access="permitAll" />
<security:intercept-url pattern="/home.do" access="permitAll" />
<security:intercept-url pattern="/accessdenied.do"
access="hasAnyRole('Admin','User')" />
<security:intercept-url pattern="/admin/**" access="hasAnyRole('Admin','User')"
/>

<security:form-login login-page="/login.do"
     login-processing-url="/dologin.do"
 username-parameter="username"
 password-parameter="password"
 authentication-failure-url="/login.do?error=true"
 default-target-url="/home.do"
 always-use-default-target="true" />
 <security:access-denied-handler error-page="/accessdenied.do" />
 <security:logout logout-success-url="/login.do" logout-url="/logout.do" />

</security:http>

<security:authentication-manager>
<security:ldap-authentication-provider
 user-search-filter="(uid={0})"
user-search-base="ou=users"
group-search-filter="(uniqueMember={0})"
group-search-base="ou=groups"
group-role-attribute="cn"
role-prefix="">
</security:ldap-authentication-provider>
</security:authentication-manager>

<security:ldap-server
url="ldap://localhost:389/o=biginfolabs,dc=com"
manager-dn="cn=admin,dc=com"
manager-password="biginfolabs" />

</beans>

This is my LDAP LDIF congiguration:

dn: dc=com
objectClass: organization
objectClass: dcObject
objectClass: top
dc: com
o: biginfolabs

dn: cn=admin,dc=com
objectClass: organizationalRole
objectClass: simpleSecurityObject
cn: admin
userPassword:: e1NTSEF9ZWFhVlY4ZlFtYjBHUjZDdDBiUXVNdWJCclBDV2MwRms=
description: LDAP administrator

dn: o=biginfolabs,dc=com
objectClass: top
objectClass: organization
o: biginfolabs

dn: ou=users,o=biginfolabs,dc=com
objectClass: top
objectClass: organizationalUnit
ou: users

dn: ou=groups,o=biginfolabs,dc=com
objectClass: top
objectClass: organizationalUnit
ou: groups

dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: inetOrgPerson
cn: AdamGilchrist
sn: Gilchrist
uid: agilchrist
userPassword:: cGFzcw==

dn: cn=GlenMaxwell,ou=users,o=biginfolabs,dc=com
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: inetOrgPerson
cn: GlenMaxwell
sn: Maxwell
uid: gmaxwell
userPassword:: cGFzcw==

dn: cn=Admin,ou=groups,o=biginfolabs,dc=com
objectClass: top
objectClass: groupOfUniqueNames
cn: Admin
uniqueMember: cn=AdamGilchrist,ou=users,o=biginfolabs

dn: cn=User,ou=groups,o=biginfolabs,dc=com
objectClass: top
objectClass: groupOfUniqueNames
cn: User
uniqueMember: cn=GlenMaxwell,ou=users,o=biginfolabs
uniqueMember: cn=ShaneWarne,ou=users,o=biginfolabs

dn: cn=ShaneWarne,ou=users,o=biginfolabs,dc=com
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: inetOrgPerson
cn: ShaneWarne
sn: Warne
uid: swarne
userPassword:: cGFzcw==


this is my console log:
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.context.annotation.internalCommonAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.context.annotation.internalCommonAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.context.annotation.internalCommonAnnotationProcessor'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.context.annotation.internalCommonAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
DEBUG: org.springframework.web.context.support.XmlWebApplicationContext -
Unable to locate MessageSource with name 'messageSource': using default
[org.springframework.context.support.DelegatingMessageSource@7dc0e904]
DEBUG: org.springframework.web.context.support.XmlWebApplicationContext -
Unable to locate ApplicationEventMulticaster with name
'applicationEventMulticaster': using default
[org.springframework.context.event.SimpleApplicationEventMulticaster@402461c
]
DEBUG: org.springframework.ui.context.support.UiApplicationContextUtils -
Unable to locate ThemeSource with name 'themeSource': using default
[org.springframework.ui.context.support.DelegatingThemeSource@6c46215]
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@67299cbf:
defining beans
[org.springframework.web.servlet.handler.MappedInterceptor#0,mvcContentNegotiationManager,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0,org.springframework.format.support.FormattingConversionServiceFactoryBean#0,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0,mvcUriComponentsContributor,org.springframework.web.servlet.handler.MappedInterceptor#1,org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0,org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0,org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0,org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping,org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter,org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter,org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0,org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0,org.springframework.web.servlet.view.InternalResourceViewResolver#0,loginController,DBController,homeController,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor];
parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@236d9f5c
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.handler.MappedInterceptor#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.handler.MappedInterceptor#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean 'webContentInterceptor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean 'webContentInterceptor'
DEBUG: org.springframework.beans.BeanUtils - No property editor
[org.springframework.web.context.request.WebRequestInterceptorEditor] found
for type org.springframework.web.context.request.WebRequestInterceptor
according to 'Editor' suffix convention
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.handler.MappedInterceptor#0' to allow for
resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.handler.MappedInterceptor#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean 'mvcContentNegotiationManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean 'mvcContentNegotiationManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean 'mvcContentNegotiationManager' to allow for
resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name
'mvcContentNegotiationManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean 'mvcContentNegotiationManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean 'mvcContentNegotiationManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.handler.MappedInterceptor#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.handler.MappedInterceptor#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.handler.MappedInterceptor#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#6964085'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#6964085'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.handler.MappedInterceptor#1' to allow for
resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.handler.MappedInterceptor#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Looking for request mappings in application context:
WebApplicationContext for namespace 'appServlet-servlet': startup date [Fri
Jul 24 17:19:11 IST 2015]; parent: Root WebApplicationContext
INFO :
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Mapped "{[/login.do ||
/],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}"
onto public java.lang.String com.devjav.spring.LoginController.showLogin()
INFO :
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Mapped
"{[/admin/jdbcReport.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}"
onto public java.lang.String
com.devjav.spring.DBController.DBControl(org.springframework.ui.Model)
throws java.sql.SQLException
INFO :
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Mapped
"{[/admin/home.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}"
onto public java.lang.String
com.devjav.spring.HomeController.Adminhome(java.util.Locale)
INFO :
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Mapped
"{[/accessdenied.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}"
onto public java.lang.String com.devjav.spring.HomeController.accessDenied()
INFO :
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Mapped
"{[/admin/MainApplication.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}"
onto public java.lang.String
com.devjav.spring.HomeController.mypage(org.springframework.ui.Model,java.util.Locale,java.security.Principal)
INFO :
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Mapped
"{[/home.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}"
onto public java.lang.String
com.devjav.spring.HomeController.home(java.util.Locale)
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean 'mvcContentNegotiationManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#198cc898'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#198cc898'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#4c1ebbf'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#4c1ebbf'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#7af76743'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#7af76743'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#2e331d50'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#2e331d50'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#68831113'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#68831113'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#5aabe81f'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#5aabe81f'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#27afd4f0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#27afd4f0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter
- Looking for controller advice: WebApplicationContext for namespace
'appServlet-servlet': startup date [Fri Jul 24 17:19:11 IST 2015]; parent:
Root WebApplicationContext
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean 'mvcUriComponentsContributor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean 'mvcUriComponentsContributor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean 'mvcUriComponentsContributor' to allow for resolving
potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#1fccaa01'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean 'mvcContentNegotiationManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#198cc898#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#198cc898#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#4c1ebbf#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#4c1ebbf#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#7af76743#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#7af76743#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#2e331d50#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#2e331d50#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#68831113#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#68831113#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#5aabe81f#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#5aabe81f#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#27afd4f0#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#27afd4f0#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name '(inner bean)#1fccaa01'
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter
- Looking for controller advice: WebApplicationContext for namespace
'appServlet-servlet': startup date [Fri Jul 24 17:19:11 IST 2015]; parent:
Root WebApplicationContext
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning eagerly cached instance of singleton bean
'mvcUriComponentsContributor' that is not fully initialized yet - a
consequence of a circular reference
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#1fccaa01'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name
'mvcUriComponentsContributor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean 'mvcUriComponentsContributor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.handler.MappedInterceptor#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean 'mvcContentNegotiationManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#4c1ebbf#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#4c1ebbf#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#7af76743#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#7af76743#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#2e331d50#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#2e331d50#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#68831113#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#68831113#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#5aabe81f#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#5aabe81f#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean '(inner bean)#27afd4f0#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean '(inner bean)#27afd4f0#2'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name
'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver
- Looking for exception mappings: WebApplicationContext for namespace
'appServlet-servlet': startup date [Fri Jul 24 17:19:11 IST 2015]; parent:
Root WebApplicationContext
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
to allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping' to
allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.handler.MappedInterceptor#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.handler.MappedInterceptor#1'
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Looking for URL mappings in application context: WebApplicationContext for
namespace 'appServlet-servlet': startup date [Fri Jul 24 17:19:11 IST
2015]; parent: Root WebApplicationContext
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.handler.MappedInterceptor#0': no URL paths
identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'mvcContentNegotiationManager': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.format.support.FormattingConversionServiceFactoryBean#0':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'mvcUriComponentsContributor': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.handler.MappedInterceptor#1': no URL paths
identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping': no URL
paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter': no URL
paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter': no
URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0': no
URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0': no URL
paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.web.servlet.view.InternalResourceViewResolver#0': no
URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'loginController': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'DBController': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'homeController': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.context.annotation.internalConfigurationAnnotationProcessor':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.context.annotation.internalAutowiredAnnotationProcessor':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.context.annotation.internalRequiredAnnotationProcessor':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.context.annotation.internalCommonAnnotationProcessor':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'environment': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'systemProperties': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'systemEnvironment': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'servletConfig': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name
'org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry':
no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'messageSource': no URL paths identified
DEBUG: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping -
Rejected bean name 'applicationEventMulticaster': no URL paths identified
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter' to allow
for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter' to
allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0' to
allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name
'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0' to
allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.handler.MappedInterceptor#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.handler.MappedInterceptor#1'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
INFO : org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Mapped URL path [/resources/**] onto handler
'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean
'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean
'org.springframework.web.servlet.view.InternalResourceViewResolver#0' to
allow for resolving potential circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean 'loginController'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean 'loginController'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean 'loginController' to allow for resolving potential
circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean 'loginController'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean 'DBController'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean 'DBController'
DEBUG: org.springframework.beans.factory.annotation.InjectionMetadata -
Registered injected element on class [com.devjav.spring.DBController]:
AutowiredMethodElement for public void
com.devjav.spring.DBController.setDataSource(javax.sql.DataSource)
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean 'DBController' to allow for resolving potential
circular references
DEBUG: org.springframework.beans.factory.annotation.InjectionMetadata -
Processing injected method of bean 'DBController': AutowiredMethodElement
for public void
com.devjav.spring.DBController.setDataSource(javax.sql.DataSource)
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean 'dataSource'
DEBUG:
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor
- Autowiring by type from bean name 'DBController' to bean named
'dataSource'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean 'DBController'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating shared instance of singleton bean 'homeController'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean 'homeController'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Eagerly caching bean 'homeController' to allow for resolving potential
circular references
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean 'homeController'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.context.annotation.internalCommonAnnotationProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
DEBUG: org.springframework.web.context.support.XmlWebApplicationContext -
Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using
default
[org.springframework.context.support.DefaultLifecycleProcessor@5b52e370]
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean 'lifecycleProcessor'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to locate
MultipartResolver with name 'multipartResolver': no multipart request
handling provided
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to locate
LocaleResolver with name 'localeResolver': using default
[org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver@10e54d0e]
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.theme.FixedThemeResolver'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.theme.FixedThemeResolver'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to locate
ThemeResolver with name 'themeResolver': using default
[org.springframework.web.servlet.theme.FixedThemeResolver@43d23fc8]
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to locate
RequestToViewNameTranslator with name 'viewNameTranslator': using default
[org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@9442c03
]
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Creating instance of bean
'org.springframework.web.servlet.support.SessionFlashMapManager'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Finished creating instance of bean
'org.springframework.web.servlet.support.SessionFlashMapManager'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to locate
FlashMapManager with name 'flashMapManager': using default
[org.springframework.web.servlet.support.SessionFlashMapManager@7444e8b0]
DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver -
Searching for key 'spring.liveBeansView.mbeanDomain' in
[servletConfigInitParams]
DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver -
Searching for key 'spring.liveBeansView.mbeanDomain' in
[servletContextInitParams]
DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver -
Searching for key 'spring.liveBeansView.mbeanDomain' in [jndiProperties]
DEBUG: org.springframework.jndi.JndiTemplate - Looking up JNDI object with
name [java:comp/env/spring.liveBeansView.mbeanDomain]
DEBUG: org.springframework.jndi.JndiLocatorDelegate - Converted JNDI name
[java:comp/env/spring.liveBeansView.mbeanDomain] not found - trying
original name [spring.liveBeansView.mbeanDomain].
javax.naming.NameNotFoundException: Name [spring.liveBeansView.mbeanDomain]
is not bound in this Context. Unable to find
[spring.liveBeansView.mbeanDomain].
DEBUG: org.springframework.jndi.JndiTemplate - Looking up JNDI object with
name [spring.liveBeansView.mbeanDomain]
DEBUG: org.springframework.jndi.JndiPropertySource - JNDI lookup for name
[spring.liveBeansView.mbeanDomain] threw NamingException with message: Name
[spring.liveBeansView.mbeanDomain] is not bound in this Context. Unable to
find [spring.liveBeansView.mbeanDomain].. Returning null.
DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver -
Searching for key 'spring.liveBeansView.mbeanDomain' in [systemProperties]
DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver -
Searching for key 'spring.liveBeansView.mbeanDomain' in [systemEnvironment]
DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver - Could
not find key 'spring.liveBeansView.mbeanDomain' in any property source.
Returning [null]
DEBUG: org.springframework.web.servlet.DispatcherServlet - Published
WebApplicationContext of servlet 'appServlet' as ServletContext attribute
with name
[org.springframework.web.servlet.FrameworkServlet.CONTEXT.appServlet]
INFO : org.springframework.web.servlet.DispatcherServlet - FrameworkServlet
'appServlet': initialization completed in 542 ms
DEBUG: org.springframework.web.servlet.DispatcherServlet - Servlet
'appServlet' configured successfully
Jul 24, 2015 5:19:11 PM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["http-bio-8080"]
Jul 24, 2015 5:19:11 PM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["ajp-bio-8009"]
Jul 24, 2015 5:19:11 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 2520 ms
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/'; against '/resources/**'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 1
of 11 in additional filter chain; firing Filter:
'SecurityContextPersistenceFilter'
DEBUG:
org.springframework.security.web.context.HttpSessionSecurityContextRepository
- HttpSession returned null object for SPRING_SECURITY_CONTEXT
DEBUG:
org.springframework.security.web.context.HttpSessionSecurityContextRepository
- No SecurityContext was available from the HttpSession:
org.apache.catalina.session.StandardSessionFacade@79de626e. A new one will
be created.
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 2
of 11 in additional filter chain; firing Filter:
'WebAsyncManagerIntegrationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 3
of 11 in additional filter chain; firing Filter: 'LogoutFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 4
of 11 in additional filter chain; firing Filter:
'UsernamePasswordAuthenticationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 5
of 11 in additional filter chain; firing Filter: 'BasicAuthenticationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 6
of 11 in additional filter chain; firing Filter: 'RequestCacheAwareFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 7
of 11 in additional filter chain; firing Filter:
'SecurityContextHolderAwareRequestFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 8
of 11 in additional filter chain; firing Filter:
'AnonymousAuthenticationFilter'
DEBUG:
org.springframework.security.web.authentication.AnonymousAuthenticationFilter
- Populated SecurityContextHolder with anonymous token:
'org.springframework.security.authentication.AnonymousAuthenticationToken@6faa1b5a:
Principal: anonymousUser; Credentials: [PROTECTED]; Authenticated: true;
Details:
org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82:
RemoteIpAddress: 127.0.0.1; SessionId: EB8F770E6D4B8FE7CA79366BDE140C4D;
Granted Authorities: ROLE_ANONYMOUS'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 9
of 11 in additional filter chain; firing Filter: 'SessionManagementFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 10
of 11 in additional filter chain; firing Filter:
'ExceptionTranslationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - / at position 11
of 11 in additional filter chain; firing Filter: 'FilterSecurityInterceptor'
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/'; against '/'
DEBUG:
org.springframework.security.web.access.intercept.FilterSecurityInterceptor
- Secure object: FilterInvocation: URL: /; Attributes: [permitAll]
DEBUG:
org.springframework.security.web.access.intercept.FilterSecurityInterceptor
- Previously Authenticated:
org.springframework.security.authentication.AnonymousAuthenticationToken@6faa1b5a:
Principal: anonymousUser; Credentials: [PROTECTED]; Authenticated: true;
Details:
org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82:
RemoteIpAddress: 127.0.0.1; SessionId: EB8F770E6D4B8FE7CA79366BDE140C4D;
Granted Authorities: ROLE_ANONYMOUS
DEBUG: org.springframework.security.access.vote.AffirmativeBased - Voter:
org.springframework.security.web.access.expression.WebExpressionVoter@2b8928fd,
returned: 1
DEBUG:
org.springframework.security.web.access.intercept.FilterSecurityInterceptor
- Authorization successful
DEBUG:
org.springframework.security.web.access.intercept.FilterSecurityInterceptor
- RunAsManager did not change Authentication object
DEBUG: org.springframework.security.web.FilterChainProxy - / reached end of
additional filter chain; proceeding with original chain
DEBUG: org.springframework.web.servlet.DispatcherServlet -
DispatcherServlet with name 'appServlet' processing GET request for
[/spring/]
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Looking up handler method for path /
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Returning handler method [public java.lang.String
com.devjav.spring.LoginController.showLogin()]
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean 'loginController'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Last-Modified
value for [/spring/] is: -1
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Looking
up cache seconds for [/]
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Applying
default cache seconds to [/]
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name 'login'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Rendering view
[org.springframework.web.servlet.view.JstlView: name 'login'; URL
[/WEB-INF/views/login.jsp]] in DispatcherServlet with name 'appServlet'
DEBUG: org.springframework.web.servlet.view.JstlView - Forwarding to
resource [/WEB-INF/views/login.jsp] in InternalResourceView 'login'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Successfully
completed request
DEBUG: org.springframework.security.web.access.ExceptionTranslationFilter -
Chain processed normally
DEBUG:
org.springframework.security.web.context.HttpSessionSecurityContextRepository
- SecurityContext is empty or contents are anonymous - context will not be
stored in HttpSession.
DEBUG:
org.springframework.security.web.context.SecurityContextPersistenceFilter -
SecurityContextHolder now cleared, as request processing completed
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/resources/css/custom.css'; against
'/resources/**'
DEBUG: org.springframework.security.web.FilterChainProxy -
/resources/css/custom.css has an empty filter list
DEBUG: org.springframework.web.servlet.DispatcherServlet -
DispatcherServlet with name 'appServlet' processing GET request for
[/spring/resources/css/custom.css]
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Looking up handler method for path /resources/css/custom.css
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Did not find handler method for [/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Matching patterns for request [/resources/css/custom.css] are
[/resources/**]
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
URI Template variables for request [/resources/css/custom.css] are {}
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/resources/css/bootstrap.min.css'; against
'/resources/**'
DEBUG: org.springframework.security.web.FilterChainProxy -
/resources/css/bootstrap.min.css has an empty filter list
DEBUG: org.springframework.web.servlet.DispatcherServlet -
DispatcherServlet with name 'appServlet' processing GET request for
[/spring/resources/css/bootstrap.min.css]
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Looking up handler method for path /resources/css/bootstrap.min.css
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Mapping [/resources/css/custom.css] to HandlerExecutionChain with handler
[org.springframework.web.servlet.resource.ResourceHttpRequestHandler@6fb9943a]
and 1 interceptor
DEBUG: org.springframework.web.servlet.DispatcherServlet - Last-Modified
value for [/spring/resources/css/custom.css] is: -1
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Looking
up cache seconds for [/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Applying
default cache seconds to [/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Trying relative path [css/custom.css] against base location:
ServletContext resource [/resources/]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Found matching resource: ServletContext resource
[/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Determined media type 'text/css' for ServletContext resource
[/resources/css/custom.css]
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Did not find handler method for [/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Matching patterns for request [/resources/css/bootstrap.min.css] are
[/resources/**]
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
URI Template variables for request [/resources/css/bootstrap.min.css] are {}
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Mapping [/resources/css/bootstrap.min.css] to HandlerExecutionChain with
handler
[org.springframework.web.servlet.resource.ResourceHttpRequestHandler@6fb9943a]
and 1 interceptor
DEBUG: org.springframework.web.servlet.DispatcherServlet - Last-Modified
value for [/spring/resources/css/bootstrap.min.css] is: -1
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Looking
up cache seconds for [/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Applying
default cache seconds to [/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Trying relative path [css/bootstrap.min.css] against base location:
ServletContext resource [/resources/]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Found matching resource: ServletContext resource
[/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Determined media type 'text/css' for ServletContext resource
[/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.DispatcherServlet - Null
ModelAndView returned to DispatcherServlet with name 'appServlet': assuming
HandlerAdapter completed request handling
DEBUG: org.springframework.web.servlet.DispatcherServlet - Successfully
completed request
DEBUG: org.springframework.web.servlet.DispatcherServlet - Null
ModelAndView returned to DispatcherServlet with name 'appServlet': assuming
HandlerAdapter completed request handling
DEBUG: org.springframework.web.servlet.DispatcherServlet - Successfully
completed request
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/dologin.do'; against '/resources/**'
DEBUG: org.springframework.security.web.FilterChainProxy - /dologin.do at
position 1 of 11 in additional filter chain; firing Filter:
'SecurityContextPersistenceFilter'
DEBUG:
org.springframework.security.web.context.HttpSessionSecurityContextRepository
- HttpSession returned null object for SPRING_SECURITY_CONTEXT
DEBUG:
org.springframework.security.web.context.HttpSessionSecurityContextRepository
- No SecurityContext was available from the HttpSession:
org.apache.catalina.session.StandardSessionFacade@79de626e. A new one will
be created.
DEBUG: org.springframework.security.web.FilterChainProxy - /dologin.do at
position 2 of 11 in additional filter chain; firing Filter:
'WebAsyncManagerIntegrationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /dologin.do at
position 3 of 11 in additional filter chain; firing Filter: 'LogoutFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /dologin.do at
position 4 of 11 in additional filter chain; firing Filter:
'UsernamePasswordAuthenticationFilter'
DEBUG:
org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter
- Request is to process authentication
DEBUG: org.springframework.security.authentication.ProviderManager -
Authentication attempt using
org.springframework.security.ldap.authentication.LdapAuthenticationProvider
DEBUG:
org.springframework.security.ldap.authentication.LdapAuthenticationProvider
- Processing authentication request for user: agilchrist
DEBUG: org.springframework.security.ldap.search.FilterBasedLdapUserSearch -
Searching for user 'agilchrist', with user search [ searchFilter:
'(uid={0})', searchBase: 'ou=users', scope: subtree, searchTimeLimit: 0,
derefLinkFlag: false ]
DEBUG: org.springframework.ldap.core.support.AbstractContextSource - Got
Ldap context on server 'ldap://localhost:389/o=biginfolabs,dc=com'
DEBUG: org.springframework.security.ldap.SpringSecurityLdapTemplate -
Searching for entry in under DN 'o=biginfolabs,dc=com', base = 'ou=users',
filter = '(uid={0})'
DEBUG: org.springframework.security.ldap.SpringSecurityLdapTemplate - Found
DN: cn=AdamGilchrist,ou=users
DEBUG: org.springframework.security.ldap.authentication.BindAuthenticator -
Attempting to bind as cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
DEBUG: org.springframework.security.ldap.DefaultSpringSecurityContextSource
- Removing pooling flag for user
cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
DEBUG: org.springframework.ldap.core.support.AbstractContextSource - Got
Ldap context on server 'ldap://localhost:389/o=biginfolabs,dc=com'
DEBUG:
org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator
- Getting authorities for user
cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
DEBUG:
org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator
- Searching for roles for user 'agilchrist', DN =
'cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com', with filter
(uniqueMember={0}) in search base 'ou=groups'
DEBUG: org.springframework.security.ldap.SpringSecurityLdapTemplate - Using
filter: (uniqueMember=cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com)
INFO : org.springframework.ldap.core.LdapTemplate - The returnObjFlag of
supplied SearchControls is not set but a ContextMapper is used - setting
flag to true
DEBUG: org.springframework.ldap.core.support.AbstractContextSource - Got
Ldap context on server 'ldap://localhost:389/o=biginfolabs,dc=com'
DEBUG:
org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator
- Roles from search: []
DEBUG: org.springframework.security.ldap.userdetails.LdapUserDetailsMapper
- Mapping user details from context with DN:
cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
DEBUG:
org.springframework.security.web.authentication.session.CompositeSessionAuthenticationStrategy
- Delegating to
org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy@2c27973
DEBUG:
org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy
- Invalidating session with Id 'EB8F770E6D4B8FE7CA79366BDE140C4D' and
migrating attributes.
DEBUG:
org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy
- Started new session: 32ED94FB280B1442CFAAEA42204BD76A
DEBUG:
org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter
- Authentication success. Updating SecurityContextHolder to contain:
org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078:
Principal:
org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e:
Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: agilchrist;
Password: [PROTECTED]; Enabled: true; AccountNonExpired: true;
CredentialsNonExpired: true; AccountNonLocked: true; Granted Authorities: ;
Credentials: [PROTECTED]; Authenticated: true; Details:
org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82:
RemoteIpAddress: 127.0.0.1; SessionId: EB8F770E6D4B8FE7CA79366BDE140C4D;
Not granted any authorities
DEBUG: org.springframework.security.web.DefaultRedirectStrategy -
Redirecting to '/spring/home.do'
DEBUG:
org.springframework.security.web.context.HttpSessionSecurityContextRepository
- SecurityContext stored to HttpSession:
'org.springframework.security.core.context.SecurityContextImpl@afa93078:
Authentication:
org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078:
Principal:
org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e:
Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: agilchrist;
Password: [PROTECTED]; Enabled: true; AccountNonExpired: true;
CredentialsNonExpired: true; AccountNonLocked: true; Granted Authorities: ;
Credentials: [PROTECTED]; Authenticated: true; Details:
org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82:
RemoteIpAddress: 127.0.0.1; SessionId: EB8F770E6D4B8FE7CA79366BDE140C4D;
Not granted any authorities'
DEBUG:
org.springframework.security.web.context.SecurityContextPersistenceFilter -
SecurityContextHolder now cleared, as request processing completed
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/home.do'; against '/resources/**'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 1 of 11 in additional filter chain; firing Filter:
'SecurityContextPersistenceFilter'
DEBUG:
org.springframework.security.web.context.HttpSessionSecurityContextRepository
- Obtained a valid SecurityContext from SPRING_SECURITY_CONTEXT:
'org.springframework.security.core.context.SecurityContextImpl@afa93078:
Authentication:
org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078:
Principal:
org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e:
Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: agilchrist;
Password: [PROTECTED]; Enabled: true; AccountNonExpired: true;
CredentialsNonExpired: true; AccountNonLocked: true; Granted Authorities: ;
Credentials: [PROTECTED]; Authenticated: true; Details:
org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82:
RemoteIpAddress: 127.0.0.1; SessionId: EB8F770E6D4B8FE7CA79366BDE140C4D;
Not granted any authorities'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 2 of 11 in additional filter chain; firing Filter:
'WebAsyncManagerIntegrationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 3 of 11 in additional filter chain; firing Filter: 'LogoutFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 4 of 11 in additional filter chain; firing Filter:
'UsernamePasswordAuthenticationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 5 of 11 in additional filter chain; firing Filter:
'BasicAuthenticationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 6 of 11 in additional filter chain; firing Filter:
'RequestCacheAwareFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 7 of 11 in additional filter chain; firing Filter:
'SecurityContextHolderAwareRequestFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 8 of 11 in additional filter chain; firing Filter:
'AnonymousAuthenticationFilter'
DEBUG:
org.springframework.security.web.authentication.AnonymousAuthenticationFilter
- SecurityContextHolder not populated with anonymous token, as it already
contained:
'org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078:
Principal:
org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e:
Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: agilchrist;
Password: [PROTECTED]; Enabled: true; AccountNonExpired: true;
CredentialsNonExpired: true; AccountNonLocked: true; Granted Authorities: ;
Credentials: [PROTECTED]; Authenticated: true; Details:
org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82:
RemoteIpAddress: 127.0.0.1; SessionId: EB8F770E6D4B8FE7CA79366BDE140C4D;
Not granted any authorities'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 9 of 11 in additional filter chain; firing Filter:
'SessionManagementFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 10 of 11 in additional filter chain; firing Filter:
'ExceptionTranslationFilter'
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at
position 11 of 11 in additional filter chain; firing Filter:
'FilterSecurityInterceptor'
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/home.do'; against '/'
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/home.do'; against '/login.do'
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/home.do'; against '/home.do'
DEBUG:
org.springframework.security.web.access.intercept.FilterSecurityInterceptor
- Secure object: FilterInvocation: URL: /home.do; Attributes: [permitAll]
DEBUG:
org.springframework.security.web.access.intercept.FilterSecurityInterceptor
- Previously Authenticated:
org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078:
Principal:
org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e:
Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: agilchrist;
Password: [PROTECTED]; Enabled: true; AccountNonExpired: true;
CredentialsNonExpired: true; AccountNonLocked: true; Granted Authorities: ;
Credentials: [PROTECTED]; Authenticated: true; Details:
org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82:
RemoteIpAddress: 127.0.0.1; SessionId: EB8F770E6D4B8FE7CA79366BDE140C4D;
Not granted any authorities
DEBUG: org.springframework.security.access.vote.AffirmativeBased - Voter:
org.springframework.security.web.access.expression.WebExpressionVoter@2b8928fd,
returned: 1
DEBUG:
org.springframework.security.web.access.intercept.FilterSecurityInterceptor
- Authorization successful
DEBUG:
org.springframework.security.web.access.intercept.FilterSecurityInterceptor
- RunAsManager did not change Authentication object
DEBUG: org.springframework.security.web.FilterChainProxy - /home.do reached
end of additional filter chain; proceeding with original chain
DEBUG: org.springframework.web.servlet.DispatcherServlet -
DispatcherServlet with name 'appServlet' processing GET request for
[/spring/home.do]
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Looking up handler method for path /home.do
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Returning handler method [public java.lang.String
com.devjav.spring.HomeController.home(java.util.Locale)]
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean 'homeController'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Last-Modified
value for [/spring/home.do] is: -1
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Looking
up cache seconds for [/home.do]
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Applying
default cache seconds to [/home.do]
The authorities []
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Invoking afterPropertiesSet() on bean with name 'home'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Rendering view
[org.springframework.web.servlet.view.JstlView: name 'home'; URL
[/WEB-INF/views/home.jsp]] in DispatcherServlet with name 'appServlet'
DEBUG: org.springframework.web.servlet.view.JstlView - Forwarding to
resource [/WEB-INF/views/home.jsp] in InternalResourceView 'home'
DEBUG: org.springframework.beans.factory.support.DefaultListableBeanFactory
- Returning cached instance of singleton bean
'org.springframework.security.web.access.expression.DefaultWebSecurityExpressionHandler#0'
DEBUG: org.springframework.web.servlet.DispatcherServlet - Successfully
completed request
DEBUG: org.springframework.security.web.access.ExceptionTranslationFilter -
Chain processed normally
DEBUG:
org.springframework.security.web.context.SecurityContextPersistenceFilter -
SecurityContextHolder now cleared, as request processing completed
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/resources/css/bootstrap.min.css'; against
'/resources/**'
DEBUG: org.springframework.security.web.util.matcher.AntPathRequestMatcher
- Checking match of request : '/resources/css/custom.css'; against
'/resources/**'
DEBUG: org.springframework.security.web.FilterChainProxy -
/resources/css/bootstrap.min.css has an empty filter list
DEBUG: org.springframework.security.web.FilterChainProxy -
/resources/css/custom.css has an empty filter list
DEBUG: org.springframework.web.servlet.DispatcherServlet -
DispatcherServlet with name 'appServlet' processing GET request for
[/spring/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.DispatcherServlet -
DispatcherServlet with name 'appServlet' processing GET request for
[/spring/resources/css/custom.css]
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Looking up handler method for path /resources/css/bootstrap.min.css
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Looking up handler method for path /resources/css/custom.css
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Did not find handler method for [/resources/css/bootstrap.min.css]
DEBUG:
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
- Did not find handler method for [/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Matching patterns for request [/resources/css/bootstrap.min.css] are
[/resources/**]
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Matching patterns for request [/resources/css/custom.css] are
[/resources/**]
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
URI Template variables for request [/resources/css/bootstrap.min.css] are {}
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
URI Template variables for request [/resources/css/custom.css] are {}
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Mapping [/resources/css/bootstrap.min.css] to HandlerExecutionChain with
handler
[org.springframework.web.servlet.resource.ResourceHttpRequestHandler@6fb9943a]
and 1 interceptor
DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping -
Mapping [/resources/css/custom.css] to HandlerExecutionChain with handler
[org.springframework.web.servlet.resource.ResourceHttpRequestHandler@6fb9943a]
and 1 interceptor
DEBUG: org.springframework.web.servlet.DispatcherServlet - Last-Modified
value for [/spring/resources/css/bootstrap.min.css] is: -1
DEBUG: org.springframework.web.servlet.DispatcherServlet - Last-Modified
value for [/spring/resources/css/custom.css] is: -1
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Looking
up cache seconds for [/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Looking
up cache seconds for [/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Applying
default cache seconds to [/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - Applying
default cache seconds to [/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Trying relative path [css/bootstrap.min.css] against base location:
ServletContext resource [/resources/]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Trying relative path [css/custom.css] against base location:
ServletContext resource [/resources/]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Found matching resource: ServletContext resource
[/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Found matching resource: ServletContext resource
[/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Determined media type 'text/css' for ServletContext resource
[/resources/css/bootstrap.min.css]
DEBUG: org.springframework.web.servlet.resource.ResourceHttpRequestHandler
- Determined media type 'text/css' for ServletContext resource
[/resources/css/custom.css]
DEBUG: org.springframework.web.servlet.DispatcherServlet - Null
ModelAndView returned to DispatcherServlet with name 'appServlet': assuming
HandlerAdapter completed request handling
DEBUG: org.springframework.web.servlet.DispatcherServlet - Successfully
completed request
DEBUG: org.springframework.web.servlet.DispatcherServlet - Null
ModelAndView returned to DispatcherServlet with name 'appServlet': assuming
HandlerAdapter completed request handling
DEBUG: org.springframework.web.servlet.DispatcherServlet - Successfully
completed request

Re: LDAP roles not getting fetched for authorization,but username and password authentication is happening

Posted by Francesco Chicchiriccò <il...@apache.org>.
Hi,
could you please clarify what you are trying to achieve, e.g. what you 
are supposing to have configured, what behavior are you experiencing and 
how such behavior is different from what you expected?

I suppose that the e-mail below is a follow-up of

http://syncope-user.1051894.n5.nabble.com/Apache-Syncope-internal-resource-for-storing-credentials-to-provide-authentication-to-a-simple-Sprinn-td5708091.html

If this is the case please keep using existing threads instead of 
triggering new ones: archiving and future searches will benefit.

Regards.

On 24/07/2015 13:42, Ajith Perur wrote:
> Please help me with fetching roles from ldap
> this is my security.xml
>
> <?xml version="1.0" encoding="UTF-8"?>
> <beans xmlns="http://www.springframework.org/schema/beans"
>   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>   xmlns:security="http://www.springframework.org/schema/security"
>   xsi:schemaLocation="http://www.springframework.org/schema/security 
> http://www.springframework.org/schema/security/spring-security-3.2.xsd
> http://www.springframework.org/schema/beans
> http://www.springframework.org/schema/beans/spring-beans.xsd">
>
>
> <security:global-method-security pre-post-annotations="enabled" />
>
> <security:http pattern="/resources/**" security="none" />
>
> <security:http auto-config="true" use-expressions="true">
>
> <security:intercept-url pattern="/" access="permitAll" />
> <security:intercept-url pattern="/login.do" access="permitAll" />
> <security:intercept-url pattern="/home.do" access="permitAll" />
> <security:intercept-url pattern="/accessdenied.do" 
> access="hasAnyRole('Admin','User')" />
> <security:intercept-url 
> pattern="/admin/**"access="hasAnyRole('Admin','User')" />
>
> <security:form-login login-page="/login.do"
>     login-processing-url="/dologin.do"
> username-parameter="username"
> password-parameter="password"
> authentication-failure-url="/login.do?error=true"
> default-target-url="/home.do"
> always-use-default-target="true" />
> <security:access-denied-handlererror-page="/accessdenied.do" />
> <security:logout logout-success-url="/login.do"logout-url="/logout.do" />
>
> </security:http>
>
> <security:authentication-manager>
> <security:ldap-authentication-provider
> user-search-filter="(uid={0})"
> user-search-base="ou=users"
> group-search-filter="(uniqueMember={0})"
> group-search-base="ou=groups"
> group-role-attribute="cn"
> role-prefix="">
> </security:ldap-authentication-provider>
> </security:authentication-manager>
>
> <security:ldap-server
> url="ldap://localhost:389/o=biginfolabs,dc=com"
> manager-dn="cn=admin,dc=com"
> manager-password="biginfolabs" />
>
> </beans>
> This is my LDAP LDIF congiguration:
>
> dn: dc=com
> objectClass: organization
> objectClass: dcObject
> objectClass: top
> dc: com
> o: biginfolabs
>
> dn: cn=admin,dc=com
> objectClass: organizationalRole
> objectClass: simpleSecurityObject
> cn: admin
> userPassword:: e1NTSEF9ZWFhVlY4ZlFtYjBHUjZDdDBiUXVNdWJCclBDV2MwRms=
> description: LDAP administrator
>
> dn: o=biginfolabs,dc=com
> objectClass: top
> objectClass: organization
> o: biginfolabs
>
> dn: ou=users,o=biginfolabs,dc=com
> objectClass: top
> objectClass: organizationalUnit
> ou: users
>
> dn: ou=groups,o=biginfolabs,dc=com
> objectClass: top
> objectClass: organizationalUnit
> ou: groups
>
> dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
> objectClass: top
> objectClass: person
> objectClass: organizationalPerson
> objectClass: inetOrgPerson
> cn: AdamGilchrist
> sn: Gilchrist
> uid: agilchrist
> userPassword:: cGFzcw==
>
> dn: cn=GlenMaxwell,ou=users,o=biginfolabs,dc=com
> objectClass: top
> objectClass: person
> objectClass: organizationalPerson
> objectClass: inetOrgPerson
> cn: GlenMaxwell
> sn: Maxwell
> uid: gmaxwell
> userPassword:: cGFzcw==
>
> dn: cn=Admin,ou=groups,o=biginfolabs,dc=com
> objectClass: top
> objectClass: groupOfUniqueNames
> cn: Admin
> uniqueMember: cn=AdamGilchrist,ou=users,o=biginfolabs
>
> dn: cn=User,ou=groups,o=biginfolabs,dc=com
> objectClass: top
> objectClass: groupOfUniqueNames
> cn: User
> uniqueMember: cn=GlenMaxwell,ou=users,o=biginfolabs
> uniqueMember: cn=ShaneWarne,ou=users,o=biginfolabs
>
> dn: cn=ShaneWarne,ou=users,o=biginfolabs,dc=com
> objectClass: top
> objectClass: person
> objectClass: organizationalPerson
> objectClass: inetOrgPerson
> cn: ShaneWarne
> sn: Warne
> uid: swarne
> userPassword:: cGFzcw==
>
>
> this is my console log:
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.context.annotation.internalCommonAnnotationProcessor' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
> DEBUG: 
> org.springframework.web.context.support.XmlWebApplicationContext - 
> Unable to locate MessageSource with name 'messageSource': using 
> default 
> [org.springframework.context.support.DelegatingMessageSource@7dc0e904]
> DEBUG: 
> org.springframework.web.context.support.XmlWebApplicationContext - 
> Unable to locate ApplicationEventMulticaster with name 
> 'applicationEventMulticaster': using default 
> [org.springframework.context.event.SimpleApplicationEventMulticaster@402461c]
> DEBUG: 
> org.springframework.ui.context.support.UiApplicationContextUtils - 
> Unable to locate ThemeSource with name 'themeSource': using default 
> [org.springframework.ui.context.support.DelegatingThemeSource@6c46215]
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Pre-instantiating singletons in 
> org.springframework.beans.factory.support.DefaultListableBeanFactory@67299cbf: 
> defining beans 
> [org.springframework.web.servlet.handler.MappedInterceptor#0,mvcContentNegotiationManager,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0,org.springframework.format.support.FormattingConversionServiceFactoryBean#0,org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0,mvcUriComponentsContributor,org.springframework.web.servlet.handler.MappedInterceptor#1,org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0,org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0,org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0,org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping,org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter,org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter,org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0,org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0,org.springframework.web.servlet.view.InternalResourceViewResolver#0,loginController,DBController,homeController,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor]; 
> parent: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory@236d9f5c
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 'webContentInterceptor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 'webContentInterceptor'
> DEBUG: org.springframework.beans.BeanUtils - No property editor 
> [org.springframework.web.context.request.WebRequestInterceptorEditor] 
> found for type 
> org.springframework.web.context.request.WebRequestInterceptor 
> according to 'Editor' suffix convention
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#0' to allow 
> for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 'mvcContentNegotiationManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 'mvcContentNegotiationManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 'mvcContentNegotiationManager' to allow for 
> resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 
> 'mvcContentNegotiationManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 'mvcContentNegotiationManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 'mvcContentNegotiationManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#6964085'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#6964085'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#1' to allow 
> for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Looking for request mappings in application context: 
> WebApplicationContext for namespace 'appServlet-servlet': startup date 
> [Fri Jul 24 17:19:11 IST 2015]; parent: Root WebApplicationContext
> INFO : 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Mapped "{[/login.do || 
> /],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" 
> onto public java.lang.String com.devjav.spring.LoginController.showLogin()
> INFO : 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Mapped 
> "{[/admin/jdbcReport.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" 
> onto public java.lang.String 
> com.devjav.spring.DBController.DBControl(org.springframework.ui.Model) 
> throws java.sql.SQLException
> INFO : 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Mapped 
> "{[/admin/home.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" 
> onto public java.lang.String 
> com.devjav.spring.HomeController.Adminhome(java.util.Locale)
> INFO : 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Mapped 
> "{[/accessdenied.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" 
> onto public java.lang.String 
> com.devjav.spring.HomeController.accessDenied()
> INFO : 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Mapped 
> "{[/admin/MainApplication.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" 
> onto public java.lang.String 
> com.devjav.spring.HomeController.mypage(org.springframework.ui.Model,java.util.Locale,java.security.Principal)
> INFO : 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Mapped 
> "{[/home.do],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" 
> onto public java.lang.String 
> com.devjav.spring.HomeController.home(java.util.Locale)
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 'mvcContentNegotiationManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#198cc898'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#198cc898'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#4c1ebbf'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#4c1ebbf'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#7af76743'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#7af76743'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#2e331d50'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#2e331d50'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#68831113'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#68831113'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#5aabe81f'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#5aabe81f'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#27afd4f0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#27afd4f0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter 
> - Looking for controller advice: WebApplicationContext for namespace 
> 'appServlet-servlet': startup date [Fri Jul 24 17:19:11 IST 2015]; 
> parent: Root WebApplicationContext
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 'mvcUriComponentsContributor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 'mvcUriComponentsContributor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 'mvcUriComponentsContributor' to allow for 
> resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#1fccaa01'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 'mvcContentNegotiationManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#198cc898#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#198cc898#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#4c1ebbf#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#4c1ebbf#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#7af76743#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#7af76743#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#2e331d50#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#2e331d50#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#68831113#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#68831113#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#5aabe81f#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#5aabe81f#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#27afd4f0#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#27afd4f0#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name '(inner bean)#1fccaa01'
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter 
> - Looking for controller advice: WebApplicationContext for namespace 
> 'appServlet-servlet': startup date [Fri Jul 24 17:19:11 IST 2015]; 
> parent: Root WebApplicationContext
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning eagerly cached instance of singleton bean 
> 'mvcUriComponentsContributor' that is not fully initialized yet - a 
> consequence of a circular reference
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#1fccaa01'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 
> 'mvcUriComponentsContributor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 'mvcUriComponentsContributor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 'mvcContentNegotiationManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#4c1ebbf#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#4c1ebbf#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#7af76743#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#7af76743#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#2e331d50#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#2e331d50#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#68831113#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#68831113#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#5aabe81f#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#5aabe81f#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean '(inner bean)#27afd4f0#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean '(inner bean)#27afd4f0#2'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 
> 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver 
> - Looking for exception mappings: WebApplicationContext for namespace 
> 'appServlet-servlet': startup date [Fri Jul 24 17:19:11 IST 2015]; 
> parent: Root WebApplicationContext
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping' to 
> allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#1'
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Looking for URL mappings in application context: WebApplicationContext 
> for namespace 'appServlet-servlet': startup date [Fri Jul 24 17:19:11 
> IST 2015]; parent: Root WebApplicationContext
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.handler.MappedInterceptor#0': no URL 
> paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'mvcContentNegotiationManager': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.format.support.FormattingConversionServiceFactoryBean#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'mvcUriComponentsContributor': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.handler.MappedInterceptor#1': no URL 
> paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter': no 
> URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.web.servlet.view.InternalResourceViewResolver#0': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'loginController': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'DBController': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'homeController': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.context.annotation.internalCommonAnnotationProcessor': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'environment': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'systemProperties': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'systemEnvironment': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'servletConfig': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry': 
> no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'messageSource': no URL paths identified
> DEBUG: 
> org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - 
> Rejected bean name 'applicationEventMulticaster': no URL paths identified
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter' to 
> allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0' to 
> allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 
> 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0' to 
> allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.handler.MappedInterceptor#1'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
> INFO : org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Mapped URL path [/resources/**] onto handler 
> 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 
> 'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 
> 'org.springframework.web.servlet.view.InternalResourceViewResolver#0' 
> to allow for resolving potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 'loginController'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 'loginController'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 'loginController' to allow for resolving 
> potential circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 'loginController'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 'DBController'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 'DBController'
> DEBUG: org.springframework.beans.factory.annotation.InjectionMetadata 
> - Registered injected element on class 
> [com.devjav.spring.DBController]: AutowiredMethodElement for public 
> void com.devjav.spring.DBController.setDataSource(javax.sql.DataSource)
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 'DBController' to allow for resolving potential 
> circular references
> DEBUG: org.springframework.beans.factory.annotation.InjectionMetadata 
> - Processing injected method of bean 'DBController': 
> AutowiredMethodElement for public void 
> com.devjav.spring.DBController.setDataSource(javax.sql.DataSource)
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 'dataSource'
> DEBUG: 
> org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor 
> - Autowiring by type from bean name 'DBController' to bean named 
> 'dataSource'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 'DBController'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating shared instance of singleton bean 'homeController'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 'homeController'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Eagerly caching bean 'homeController' to allow for resolving potential 
> circular references
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 'homeController'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
> DEBUG: 
> org.springframework.web.context.support.XmlWebApplicationContext - 
> Unable to locate LifecycleProcessor with name 'lifecycleProcessor': 
> using default 
> [org.springframework.context.support.DefaultLifecycleProcessor@5b52e370]
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 'lifecycleProcessor'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to 
> locate MultipartResolver with name 'multipartResolver': no multipart 
> request handling provided
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to 
> locate LocaleResolver with name 'localeResolver': using default 
> [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver@10e54d0e]
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.theme.FixedThemeResolver'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.theme.FixedThemeResolver'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to 
> locate ThemeResolver with name 'themeResolver': using default 
> [org.springframework.web.servlet.theme.FixedThemeResolver@43d23fc8]
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.handler.SimpleUrlHandlerMapping#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to 
> locate RequestToViewNameTranslator with name 'viewNameTranslator': 
> using default 
> [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@9442c03]
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.web.servlet.view.InternalResourceViewResolver#0'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Creating instance of bean 
> 'org.springframework.web.servlet.support.SessionFlashMapManager'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Finished creating instance of bean 
> 'org.springframework.web.servlet.support.SessionFlashMapManager'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Unable to 
> locate FlashMapManager with name 'flashMapManager': using default 
> [org.springframework.web.servlet.support.SessionFlashMapManager@7444e8b0]
> DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver - 
> Searching for key 'spring.liveBeansView.mbeanDomain' in 
> [servletConfigInitParams]
> DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver - 
> Searching for key 'spring.liveBeansView.mbeanDomain' in 
> [servletContextInitParams]
> DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver - 
> Searching for key 'spring.liveBeansView.mbeanDomain' in [jndiProperties]
> DEBUG: org.springframework.jndi.JndiTemplate - Looking up JNDI object 
> with name [java:comp/env/spring.liveBeansView.mbeanDomain]
> DEBUG: org.springframework.jndi.JndiLocatorDelegate - Converted JNDI 
> name [java:comp/env/spring.liveBeansView.mbeanDomain] not found - 
> trying original name [spring.liveBeansView.mbeanDomain]. 
> javax.naming.NameNotFoundException: Name 
> [spring.liveBeansView.mbeanDomain] is not bound in this Context. 
> Unable to find [spring.liveBeansView.mbeanDomain].
> DEBUG: org.springframework.jndi.JndiTemplate - Looking up JNDI object 
> with name [spring.liveBeansView.mbeanDomain]
> DEBUG: org.springframework.jndi.JndiPropertySource - JNDI lookup for 
> name [spring.liveBeansView.mbeanDomain] threw NamingException with 
> message: Name [spring.liveBeansView.mbeanDomain] is not bound in this 
> Context. Unable to find [spring.liveBeansView.mbeanDomain].. Returning 
> null.
> DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver - 
> Searching for key 'spring.liveBeansView.mbeanDomain' in [systemProperties]
> DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver - 
> Searching for key 'spring.liveBeansView.mbeanDomain' in 
> [systemEnvironment]
> DEBUG: org.springframework.core.env.PropertySourcesPropertyResolver - 
> Could not find key 'spring.liveBeansView.mbeanDomain' in any property 
> source. Returning [null]
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Published 
> WebApplicationContext of servlet 'appServlet' as ServletContext 
> attribute with name 
> [org.springframework.web.servlet.FrameworkServlet.CONTEXT.appServlet]
> INFO : org.springframework.web.servlet.DispatcherServlet - 
> FrameworkServlet 'appServlet': initialization completed in 542 ms
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Servlet 
> 'appServlet' configured successfully
> Jul 24, 2015 5:19:11 PM org.apache.coyote.AbstractProtocol start
> INFO: Starting ProtocolHandler ["http-bio-8080"]
> Jul 24, 2015 5:19:11 PM org.apache.coyote.AbstractProtocol start
> INFO: Starting ProtocolHandler ["ajp-bio-8009"]
> Jul 24, 2015 5:19:11 PM org.apache.catalina.startup.Catalina start
> INFO: Server startup in 2520 ms
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/'; against '/resources/**'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 1 of 11 in additional filter chain; firing Filter: 
> 'SecurityContextPersistenceFilter'
> DEBUG: 
> org.springframework.security.web.context.HttpSessionSecurityContextRepository 
> - HttpSession returned null object for SPRING_SECURITY_CONTEXT
> DEBUG: 
> org.springframework.security.web.context.HttpSessionSecurityContextRepository 
> - No SecurityContext was available from the HttpSession: 
> org.apache.catalina.session.StandardSessionFacade@79de626e. A new one 
> will be created.
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 2 of 11 in additional filter chain; firing Filter: 
> 'WebAsyncManagerIntegrationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 3 of 11 in additional filter chain; firing Filter: 'LogoutFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 4 of 11 in additional filter chain; firing Filter: 
> 'UsernamePasswordAuthenticationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 5 of 11 in additional filter chain; firing Filter: 
> 'BasicAuthenticationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 6 of 11 in additional filter chain; firing Filter: 
> 'RequestCacheAwareFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 7 of 11 in additional filter chain; firing Filter: 
> 'SecurityContextHolderAwareRequestFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 8 of 11 in additional filter chain; firing Filter: 
> 'AnonymousAuthenticationFilter'
> DEBUG: 
> org.springframework.security.web.authentication.AnonymousAuthenticationFilter 
> - Populated SecurityContextHolder with anonymous token: 
> 'org.springframework.security.authentication.AnonymousAuthenticationToken@6faa1b5a: 
> Principal: anonymousUser; Credentials: [PROTECTED]; Authenticated: 
> true; Details: 
> org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82: 
> RemoteIpAddress: 127.0.0.1; SessionId: 
> EB8F770E6D4B8FE7CA79366BDE140C4D; Granted Authorities: ROLE_ANONYMOUS'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 9 of 11 in additional filter chain; firing Filter: 
> 'SessionManagementFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 10 of 11 in additional filter chain; firing Filter: 
> 'ExceptionTranslationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - / at 
> position 11 of 11 in additional filter chain; firing Filter: 
> 'FilterSecurityInterceptor'
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/'; against '/'
> DEBUG: 
> org.springframework.security.web.access.intercept.FilterSecurityInterceptor 
> - Secure object: FilterInvocation: URL: /; Attributes: [permitAll]
> DEBUG: 
> org.springframework.security.web.access.intercept.FilterSecurityInterceptor 
> - Previously Authenticated: 
> org.springframework.security.authentication.AnonymousAuthenticationToken@6faa1b5a: 
> Principal: anonymousUser; Credentials: [PROTECTED]; Authenticated: 
> true; Details: 
> org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82: 
> RemoteIpAddress: 127.0.0.1; SessionId: 
> EB8F770E6D4B8FE7CA79366BDE140C4D; Granted Authorities: ROLE_ANONYMOUS
> DEBUG: org.springframework.security.access.vote.AffirmativeBased - 
> Voter: 
> org.springframework.security.web.access.expression.WebExpressionVoter@2b8928fd, 
> returned: 1
> DEBUG: 
> org.springframework.security.web.access.intercept.FilterSecurityInterceptor 
> - Authorization successful
> DEBUG: 
> org.springframework.security.web.access.intercept.FilterSecurityInterceptor 
> - RunAsManager did not change Authentication object
> DEBUG: org.springframework.security.web.FilterChainProxy - / reached 
> end of additional filter chain; proceeding with original chain
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> DispatcherServlet with name 'appServlet' processing GET request for 
> [/spring/]
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Looking up handler method for path /
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Returning handler method [public java.lang.String 
> com.devjav.spring.LoginController.showLogin()]
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 'loginController'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Last-Modified value for [/spring/] is: -1
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Looking up cache seconds for [/]
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Applying default cache seconds to [/]
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 'login'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Rendering 
> view [org.springframework.web.servlet.view.JstlView: name 'login'; URL 
> [/WEB-INF/views/login.jsp]] in DispatcherServlet with name 'appServlet'
> DEBUG: org.springframework.web.servlet.view.JstlView - Forwarding to 
> resource [/WEB-INF/views/login.jsp] in InternalResourceView 'login'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Successfully completed request
> DEBUG: 
> org.springframework.security.web.access.ExceptionTranslationFilter - 
> Chain processed normally
> DEBUG: 
> org.springframework.security.web.context.HttpSessionSecurityContextRepository 
> - SecurityContext is empty or contents are anonymous - context will 
> not be stored in HttpSession.
> DEBUG: 
> org.springframework.security.web.context.SecurityContextPersistenceFilter 
> - SecurityContextHolder now cleared, as request processing completed
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/resources/css/custom.css'; against 
> '/resources/**'
> DEBUG: org.springframework.security.web.FilterChainProxy - 
> /resources/css/custom.css has an empty filter list
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> DispatcherServlet with name 'appServlet' processing GET request for 
> [/spring/resources/css/custom.css]
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Looking up handler method for path /resources/css/custom.css
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Did not find handler method for [/resources/css/custom.css]
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Matching patterns for request [/resources/css/custom.css] are 
> [/resources/**]
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - URI Template variables for request [/resources/css/custom.css] are {}
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/resources/css/bootstrap.min.css'; 
> against '/resources/**'
> DEBUG: org.springframework.security.web.FilterChainProxy - 
> /resources/css/bootstrap.min.css has an empty filter list
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> DispatcherServlet with name 'appServlet' processing GET request for 
> [/spring/resources/css/bootstrap.min.css]
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Looking up handler method for path /resources/css/bootstrap.min.css
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Mapping [/resources/css/custom.css] to HandlerExecutionChain with 
> handler 
> [org.springframework.web.servlet.resource.ResourceHttpRequestHandler@6fb9943a] 
> and 1 interceptor
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Last-Modified value for [/spring/resources/css/custom.css] is: -1
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Looking up cache seconds for [/resources/css/custom.css]
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Applying default cache seconds to [/resources/css/custom.css]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Trying relative path [css/custom.css] against base location: 
> ServletContext resource [/resources/]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Found matching resource: ServletContext resource 
> [/resources/css/custom.css]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Determined media type 'text/css' for ServletContext resource 
> [/resources/css/custom.css]
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Did not find handler method for [/resources/css/bootstrap.min.css]
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Matching patterns for request [/resources/css/bootstrap.min.css] are 
> [/resources/**]
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - URI Template variables for request 
> [/resources/css/bootstrap.min.css] are {}
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Mapping [/resources/css/bootstrap.min.css] to HandlerExecutionChain 
> with handler 
> [org.springframework.web.servlet.resource.ResourceHttpRequestHandler@6fb9943a] 
> and 1 interceptor
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Last-Modified value for [/spring/resources/css/bootstrap.min.css] is: -1
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Looking up cache seconds for [/resources/css/bootstrap.min.css]
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Applying default cache seconds to [/resources/css/bootstrap.min.css]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Trying relative path [css/bootstrap.min.css] against base location: 
> ServletContext resource [/resources/]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Found matching resource: ServletContext resource 
> [/resources/css/bootstrap.min.css]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Determined media type 'text/css' for ServletContext resource 
> [/resources/css/bootstrap.min.css]
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Null 
> ModelAndView returned to DispatcherServlet with name 'appServlet': 
> assuming HandlerAdapter completed request handling
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Successfully completed request
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Null 
> ModelAndView returned to DispatcherServlet with name 'appServlet': 
> assuming HandlerAdapter completed request handling
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Successfully completed request
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/dologin.do'; against '/resources/**'
> DEBUG: org.springframework.security.web.FilterChainProxy - /dologin.do 
> at position 1 of 11 in additional filter chain; firing Filter: 
> 'SecurityContextPersistenceFilter'
> DEBUG: 
> org.springframework.security.web.context.HttpSessionSecurityContextRepository 
> - HttpSession returned null object for SPRING_SECURITY_CONTEXT
> DEBUG: 
> org.springframework.security.web.context.HttpSessionSecurityContextRepository 
> - No SecurityContext was available from the HttpSession: 
> org.apache.catalina.session.StandardSessionFacade@79de626e. A new one 
> will be created.
> DEBUG: org.springframework.security.web.FilterChainProxy - /dologin.do 
> at position 2 of 11 in additional filter chain; firing Filter: 
> 'WebAsyncManagerIntegrationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /dologin.do 
> at position 3 of 11 in additional filter chain; firing Filter: 
> 'LogoutFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /dologin.do 
> at position 4 of 11 in additional filter chain; firing Filter: 
> 'UsernamePasswordAuthenticationFilter'
> DEBUG: 
> org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter 
> - Request is to process authentication
> DEBUG: org.springframework.security.authentication.ProviderManager - 
> Authentication attempt using 
> org.springframework.security.ldap.authentication.LdapAuthenticationProvider
> DEBUG: 
> org.springframework.security.ldap.authentication.LdapAuthenticationProvider 
> - Processing authentication request for user: agilchrist
> DEBUG: 
> org.springframework.security.ldap.search.FilterBasedLdapUserSearch - 
> Searching for user 'agilchrist', with user search [ searchFilter: 
> '(uid={0})', searchBase: 'ou=users', scope: subtree, searchTimeLimit: 
> 0, derefLinkFlag: false ]
> DEBUG: org.springframework.ldap.core.support.AbstractContextSource - 
> Got Ldap context on server 'ldap://localhost:389/o=biginfolabs,dc=com'
> DEBUG: org.springframework.security.ldap.SpringSecurityLdapTemplate - 
> Searching for entry in under DN 'o=biginfolabs,dc=com', base = 
> 'ou=users', filter = '(uid={0})'
> DEBUG: org.springframework.security.ldap.SpringSecurityLdapTemplate - 
> Found DN: cn=AdamGilchrist,ou=users
> DEBUG: 
> org.springframework.security.ldap.authentication.BindAuthenticator - 
> Attempting to bind as cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
> DEBUG: 
> org.springframework.security.ldap.DefaultSpringSecurityContextSource - 
> Removing pooling flag for user 
> cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
> DEBUG: org.springframework.ldap.core.support.AbstractContextSource - 
> Got Ldap context on server 'ldap://localhost:389/o=biginfolabs,dc=com'
> DEBUG: 
> org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator 
> - Getting authorities for user 
> cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
> DEBUG: 
> org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator 
> - Searching for roles for user 'agilchrist', DN = 
> 'cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com', with filter 
> (uniqueMember={0}) in search base 'ou=groups'
> DEBUG: org.springframework.security.ldap.SpringSecurityLdapTemplate - 
> Using filter: 
> (uniqueMember=cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com)
> INFO : org.springframework.ldap.core.LdapTemplate - The returnObjFlag 
> of supplied SearchControls is not set but a ContextMapper is used - 
> setting flag to true
> DEBUG: org.springframework.ldap.core.support.AbstractContextSource - 
> Got Ldap context on server 'ldap://localhost:389/o=biginfolabs,dc=com'
> DEBUG: 
> org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator 
> - Roles from search: []
> DEBUG: 
> org.springframework.security.ldap.userdetails.LdapUserDetailsMapper - 
> Mapping user details from context with DN: 
> cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com
> DEBUG: 
> org.springframework.security.web.authentication.session.CompositeSessionAuthenticationStrategy 
> - Delegating to 
> org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy@2c27973
> DEBUG: 
> org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy 
> - Invalidating session with Id 'EB8F770E6D4B8FE7CA79366BDE140C4D' and 
> migrating attributes.
> DEBUG: 
> org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy 
> - Started new session: 32ED94FB280B1442CFAAEA42204BD76A
> DEBUG: 
> org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter 
> - Authentication success. Updating SecurityContextHolder to contain: 
> org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078: 
> Principal: 
> org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e: 
> Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: 
> agilchrist; Password: [PROTECTED]; Enabled: true; AccountNonExpired: 
> true; CredentialsNonExpired: true; AccountNonLocked: true; Granted 
> Authorities: ; Credentials: [PROTECTED]; Authenticated: true; Details: 
> org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82: 
> RemoteIpAddress: 127.0.0.1; SessionId: 
> EB8F770E6D4B8FE7CA79366BDE140C4D; Not granted any authorities
> DEBUG: org.springframework.security.web.DefaultRedirectStrategy - 
> Redirecting to '/spring/home.do'
> DEBUG: 
> org.springframework.security.web.context.HttpSessionSecurityContextRepository 
> - SecurityContext stored to HttpSession: 
> 'org.springframework.security.core.context.SecurityContextImpl@afa93078: 
> Authentication: 
> org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078: 
> Principal: 
> org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e: 
> Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: 
> agilchrist; Password: [PROTECTED]; Enabled: true; AccountNonExpired: 
> true; CredentialsNonExpired: true; AccountNonLocked: true; Granted 
> Authorities: ; Credentials: [PROTECTED]; Authenticated: true; Details: 
> org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82: 
> RemoteIpAddress: 127.0.0.1; SessionId: 
> EB8F770E6D4B8FE7CA79366BDE140C4D; Not granted any authorities'
> DEBUG: 
> org.springframework.security.web.context.SecurityContextPersistenceFilter 
> - SecurityContextHolder now cleared, as request processing completed
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/home.do'; against '/resources/**'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 1 of 11 in additional filter chain; firing Filter: 
> 'SecurityContextPersistenceFilter'
> DEBUG: 
> org.springframework.security.web.context.HttpSessionSecurityContextRepository 
> - Obtained a valid SecurityContext from SPRING_SECURITY_CONTEXT: 
> 'org.springframework.security.core.context.SecurityContextImpl@afa93078: 
> Authentication: 
> org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078: 
> Principal: 
> org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e: 
> Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: 
> agilchrist; Password: [PROTECTED]; Enabled: true; AccountNonExpired: 
> true; CredentialsNonExpired: true; AccountNonLocked: true; Granted 
> Authorities: ; Credentials: [PROTECTED]; Authenticated: true; Details: 
> org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82: 
> RemoteIpAddress: 127.0.0.1; SessionId: 
> EB8F770E6D4B8FE7CA79366BDE140C4D; Not granted any authorities'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 2 of 11 in additional filter chain; firing Filter: 
> 'WebAsyncManagerIntegrationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 3 of 11 in additional filter chain; firing Filter: 'LogoutFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 4 of 11 in additional filter chain; firing Filter: 
> 'UsernamePasswordAuthenticationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 5 of 11 in additional filter chain; firing Filter: 
> 'BasicAuthenticationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 6 of 11 in additional filter chain; firing Filter: 
> 'RequestCacheAwareFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 7 of 11 in additional filter chain; firing Filter: 
> 'SecurityContextHolderAwareRequestFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 8 of 11 in additional filter chain; firing Filter: 
> 'AnonymousAuthenticationFilter'
> DEBUG: 
> org.springframework.security.web.authentication.AnonymousAuthenticationFilter 
> - SecurityContextHolder not populated with anonymous token, as it 
> already contained: 
> 'org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078: 
> Principal: 
> org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e: 
> Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: 
> agilchrist; Password: [PROTECTED]; Enabled: true; AccountNonExpired: 
> true; CredentialsNonExpired: true; AccountNonLocked: true; Granted 
> Authorities: ; Credentials: [PROTECTED]; Authenticated: true; Details: 
> org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82: 
> RemoteIpAddress: 127.0.0.1; SessionId: 
> EB8F770E6D4B8FE7CA79366BDE140C4D; Not granted any authorities'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 9 of 11 in additional filter chain; firing Filter: 
> 'SessionManagementFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 10 of 11 in additional filter chain; firing Filter: 
> 'ExceptionTranslationFilter'
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do at 
> position 11 of 11 in additional filter chain; firing Filter: 
> 'FilterSecurityInterceptor'
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/home.do'; against '/'
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/home.do'; against '/login.do'
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/home.do'; against '/home.do'
> DEBUG: 
> org.springframework.security.web.access.intercept.FilterSecurityInterceptor 
> - Secure object: FilterInvocation: URL: /home.do; Attributes: [permitAll]
> DEBUG: 
> org.springframework.security.web.access.intercept.FilterSecurityInterceptor 
> - Previously Authenticated: 
> org.springframework.security.authentication.UsernamePasswordAuthenticationToken@afa93078: 
> Principal: 
> org.springframework.security.ldap.userdetails.LdapUserDetailsImpl@afa9a53e: 
> Dn: cn=AdamGilchrist,ou=users,o=biginfolabs,dc=com; Username: 
> agilchrist; Password: [PROTECTED]; Enabled: true; AccountNonExpired: 
> true; CredentialsNonExpired: true; AccountNonLocked: true; Granted 
> Authorities: ; Credentials: [PROTECTED]; Authenticated: true; Details: 
> org.springframework.security.web.authentication.WebAuthenticationDetails@ffff6a82: 
> RemoteIpAddress: 127.0.0.1; SessionId: 
> EB8F770E6D4B8FE7CA79366BDE140C4D; Not granted any authorities
> DEBUG: org.springframework.security.access.vote.AffirmativeBased - 
> Voter: 
> org.springframework.security.web.access.expression.WebExpressionVoter@2b8928fd, 
> returned: 1
> DEBUG: 
> org.springframework.security.web.access.intercept.FilterSecurityInterceptor 
> - Authorization successful
> DEBUG: 
> org.springframework.security.web.access.intercept.FilterSecurityInterceptor 
> - RunAsManager did not change Authentication object
> DEBUG: org.springframework.security.web.FilterChainProxy - /home.do 
> reached end of additional filter chain; proceeding with original chain
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> DispatcherServlet with name 'appServlet' processing GET request for 
> [/spring/home.do]
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Looking up handler method for path /home.do
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Returning handler method [public java.lang.String 
> com.devjav.spring.HomeController.home(java.util.Locale)]
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 'homeController'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Last-Modified value for [/spring/home.do] is: -1
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Looking up cache seconds for [/home.do]
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Applying default cache seconds to [/home.do]
> The authorities []
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Invoking afterPropertiesSet() on bean with name 'home'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Rendering 
> view [org.springframework.web.servlet.view.JstlView: name 'home'; URL 
> [/WEB-INF/views/home.jsp]] in DispatcherServlet with name 'appServlet'
> DEBUG: org.springframework.web.servlet.view.JstlView - Forwarding to 
> resource [/WEB-INF/views/home.jsp] in InternalResourceView 'home'
> DEBUG: 
> org.springframework.beans.factory.support.DefaultListableBeanFactory - 
> Returning cached instance of singleton bean 
> 'org.springframework.security.web.access.expression.DefaultWebSecurityExpressionHandler#0'
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Successfully completed request
> DEBUG: 
> org.springframework.security.web.access.ExceptionTranslationFilter - 
> Chain processed normally
> DEBUG: 
> org.springframework.security.web.context.SecurityContextPersistenceFilter 
> - SecurityContextHolder now cleared, as request processing completed
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/resources/css/bootstrap.min.css'; 
> against '/resources/**'
> DEBUG: 
> org.springframework.security.web.util.matcher.AntPathRequestMatcher - 
> Checking match of request : '/resources/css/custom.css'; against 
> '/resources/**'
> DEBUG: org.springframework.security.web.FilterChainProxy - 
> /resources/css/bootstrap.min.css has an empty filter list
> DEBUG: org.springframework.security.web.FilterChainProxy - 
> /resources/css/custom.css has an empty filter list
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> DispatcherServlet with name 'appServlet' processing GET request for 
> [/spring/resources/css/bootstrap.min.css]
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> DispatcherServlet with name 'appServlet' processing GET request for 
> [/spring/resources/css/custom.css]
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Looking up handler method for path /resources/css/bootstrap.min.css
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Looking up handler method for path /resources/css/custom.css
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Did not find handler method for [/resources/css/bootstrap.min.css]
> DEBUG: 
> org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping 
> - Did not find handler method for [/resources/css/custom.css]
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Matching patterns for request [/resources/css/bootstrap.min.css] are 
> [/resources/**]
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Matching patterns for request [/resources/css/custom.css] are 
> [/resources/**]
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - URI Template variables for request 
> [/resources/css/bootstrap.min.css] are {}
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - URI Template variables for request [/resources/css/custom.css] are {}
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Mapping [/resources/css/bootstrap.min.css] to HandlerExecutionChain 
> with handler 
> [org.springframework.web.servlet.resource.ResourceHttpRequestHandler@6fb9943a] 
> and 1 interceptor
> DEBUG: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping 
> - Mapping [/resources/css/custom.css] to HandlerExecutionChain with 
> handler 
> [org.springframework.web.servlet.resource.ResourceHttpRequestHandler@6fb9943a] 
> and 1 interceptor
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Last-Modified value for [/spring/resources/css/bootstrap.min.css] is: -1
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Last-Modified value for [/spring/resources/css/custom.css] is: -1
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Looking up cache seconds for [/resources/css/bootstrap.min.css]
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Looking up cache seconds for [/resources/css/custom.css]
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Applying default cache seconds to [/resources/css/bootstrap.min.css]
> DEBUG: org.springframework.web.servlet.mvc.WebContentInterceptor - 
> Applying default cache seconds to [/resources/css/custom.css]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Trying relative path [css/bootstrap.min.css] against base location: 
> ServletContext resource [/resources/]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Trying relative path [css/custom.css] against base location: 
> ServletContext resource [/resources/]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Found matching resource: ServletContext resource 
> [/resources/css/bootstrap.min.css]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Found matching resource: ServletContext resource 
> [/resources/css/custom.css]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Determined media type 'text/css' for ServletContext resource 
> [/resources/css/bootstrap.min.css]
> DEBUG: 
> org.springframework.web.servlet.resource.ResourceHttpRequestHandler - 
> Determined media type 'text/css' for ServletContext resource 
> [/resources/css/custom.css]
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Null 
> ModelAndView returned to DispatcherServlet with name 'appServlet': 
> assuming HandlerAdapter completed request handling
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Successfully completed request
> DEBUG: org.springframework.web.servlet.DispatcherServlet - Null 
> ModelAndView returned to DispatcherServlet with name 'appServlet': 
> assuming HandlerAdapter completed request handling
> DEBUG: org.springframework.web.servlet.DispatcherServlet - 
> Successfully completed request
>
-- 
Francesco Chicchiriccò

Tirasa - Open Source Excellence
http://www.tirasa.net/

Involved at The Apache Software Foundation:
member, Syncope PMC chair, Cocoon PMC, Olingo PMC
http://people.apache.org/~ilgrosso/