fichier pom.xml
Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.pfe</groupId>
	<artifactId>it</artifactId>
	<name>FSBpfe</name>
	<packaging>war</packaging>
	<version>1.0.0-BUILD-SNAPSHOT</version>
	<properties>
		<java-version>1.6</java-version>
		<org.springframework-version>3.1.1.RELEASE</org.springframework-version>
		<org.aspectj-version>1.6.10</org.aspectj-version>
		<org.slf4j-version>1.6.6</org.slf4j-version>
	</properties>
	<dependencies>
		<!-- Spring -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>${org.springframework-version}</version>
			<exclusions>
				<!-- Exclude Commons Logging in favor of SLF4j -->
				<exclusion>
					<groupId>commons-logging</groupId>
					<artifactId>commons-logging</artifactId>
				 </exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-webmvc</artifactId>
			<version>${org.springframework-version}</version>
		</dependency>
 
		<!--  <dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-security</artifactId>
		</dependency>-->
 
		<!-- AspectJ -->
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>aspectjrt</artifactId>
			<version>${org.aspectj-version}</version>
		</dependency>	
 
		<!-- Logging -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>${org.slf4j-version}</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
			<version>${org.slf4j-version}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>${org.slf4j-version}</version>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.15</version>
			<exclusions>
				<exclusion>
					<groupId>javax.mail</groupId>
					<artifactId>mail</artifactId>
				</exclusion>
				<exclusion>
					<groupId>javax.jms</groupId>
					<artifactId>jms</artifactId>
				</exclusion>
				<exclusion>
					<groupId>com.sun.jdmk</groupId>
					<artifactId>jmxtools</artifactId>
				</exclusion>
				<exclusion>
					<groupId>com.sun.jmx</groupId>
					<artifactId>jmxri</artifactId>
				</exclusion>
			</exclusions>
			<scope>runtime</scope>
		</dependency>
 
		<!-- @Inject -->
		<dependency>
			<groupId>javax.inject</groupId>
			<artifactId>javax.inject</artifactId>
			<version>1</version>
		</dependency>
 
		<!-- Servlet -->
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.servlet.jsp</groupId>
			<artifactId>jsp-api</artifactId>
			<version>2.1</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>jstl</artifactId>
			<version>1.2</version>
		</dependency>
 
		<!-- Test -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.7</version>
			<scope>test</scope>
		</dependency>   
 
 
			<!-- hibernate jpa -->
		<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-commons-annotations</artifactId>
			<version>3.2.0.Final</version>
			</dependency>
		<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-core</artifactId>
			<version>3.6.0.Final</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-orm</artifactId>
			<version>3.1.1.RELEASE</version>
			</dependency>
			<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-entitymanager</artifactId>
			<version>3.6.0.Final</version>
		</dependency>
			<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-validator</artifactId>
			<version>4.1.0.Final</version>
		</dependency>
		<dependency>
			<groupId>org.hibernate.javax.persistence</groupId>
			<artifactId>hibernate-jpa-2.0-api</artifactId>
			<version>1.0.1.Final</version>
		</dependency>
 
		       	<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>5.1.6</version>
		</dependency>
		       	<dependency>
		       		<groupId>com.flickr4java</groupId>
		       		<artifactId>flickr4java</artifactId>
		       		<version>2.12</version>
		       	</dependency>
 
		<!--    ce sont des dependances ajouté manuellement  -->
		       	<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>1.3.2</version>
		</dependency>
		       	<dependency>
		       		<groupId>commons-fileupload</groupId>
		       		<artifactId>commons-fileupload</artifactId>
		       		<version>1.2.2</version>
		       	</dependency>
		               <!--      fin    -->
 
 
		               <!-- spring security -->
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-core</artifactId>
			<version>3.2.0.RELEASE</version>
		</dependency>
 
 
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-config</artifactId>
			<version>3.2.0.RELEASE</version>
		</dependency>
 
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-web</artifactId>
			<version>3.2.0.RELEASE</version>
		</dependency>
 
 
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
			<version>3.2.1.RELEASE</version>
		</dependency>
 
 
		<!-- fin -->
 
 
	</dependencies>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.9</version>
                <configuration>
                    <additionalProjectnatures>
                        <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
                    </additionalProjectnatures>
                    <additionalBuildcommands>
                        <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
                    </additionalBuildcommands>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <compilerArgument>-Xlint:all</compilerArgument>
                    <showWarnings>true</showWarnings>
                    <showDeprecation>true</showDeprecation>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>
                <configuration>
                    <mainClass>org.test.int1.Main</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

fichier web.xml
Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
 
 
    <context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath*:applicationContext.xml</param-value>
	</context-param>
 
	<!-- Processes application requests -->
	<servlet>
		<servlet-name>appServlet</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
 
	<servlet-mapping>
		<servlet-name>appServlet</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>
 
	<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
 
	<!-- Multiligne definition 
	<context-param>
	<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
	<param-value>i18n.applicationresources</param-value>
	</context-param> -->
 
	<!-- Creates the Spring Container shared by all Servlets and Filters -->
 
    <listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
 
    <filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingfilterProxy</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>springSecurityFilterChain</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
 
 
 
</web-app>

fichier spring-config.xml
Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
 
<beans xmlns:s="http://www.springframework.org/schema/security"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:jdbc="http://www.springframework.org/schema/jdbc"
	xsi:schemaLocation="http://www.springframework.org/schema/security <a href="http://www.springframework.org/schema/security/spring-security-3.2.xsd" target="_blank">http://www.springframework.org/schem...curity-3.2.xsd</a>
		<a href="http://www.springframework.org/schema/jdbc" target="_blank">http://www.springframework.org/schema/jdbc</a> <a href="http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd" target="_blank">http://www.springframework.org/schem...g-jdbc-3.1.xsd</a>
		<a href="http://www.springframework.org/schema/beans" target="_blank">http://www.springframework.org/schema/beans</a> <a href="http://www.springframework.org/schema/beans/spring-beans.xsd" target="_blank">http://www.springframework.org/schem...ring-beans.xsd</a>
		<a href="http://www.springframework.org/schema/context" target="_blank">http://www.springframework.org/schema/context</a> http://www.springframework.org/schema/context/spring-context-3.1.xsd">
 
 
	 	<s:http auto-config="true" use-expressions="true" >
 
		    <s:intercept-url pattern="/home/" access="hasAnyRole('ROlE_USER','ROLE_ADMIN')"/>
	    	<!--  <s:intercept-url pattern="/home/**" access="ROLE_ADMIN"/>--> 
	    	<s:form-login login-page="/" default-target-url="/home/" authentication-failure-url="/failedlogin"></s:form-login>
 
	    	<s:access-denied-handler error-page="/403/"></s:access-denied-handler>
					<s:logout     logout-success-url="/" delete-cookies="JSESSIONID"></s:logout>
		</s:http>
		<s:authentication-manager> 
 
		<s:authentication-provider> 
		 <s:password-encoder hash="md5"/>
		 <s:jdbc-user-service data-source-ref="dataSource" users-by-username-query="select login, pwd ,actived from compte where login=?"
        authorities-by-username-query="select v.login, r.nameRole compte v,role r where v.idCpt =r.idCpt and v.login= ?"/>
		</s:authentication-provider>
 
        </s:authentication-manager>	                                               
 
 
 </beans>

page not found 404
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
019 9:42:33 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Server version:        Apache Tomcat/8.5.38
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Server built:          Feb 5 2019 11:42:42 UTC
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Server number:         8.5.38.0
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: OS Name:               Windows 10
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: OS Version:            10.0
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Architecture:          x86
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Java Home:             C:\Program Files\Java\jre1.8.0_201
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: JVM Version:           1.8.0_201-b09
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: JVM Vendor:            Oracle Corporation
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: CATALINA_BASE:         C:\Users\Home\Documents\workspace-sts-3.9.6.RELEASE\.metadata\.plugins\org.eclipse.wst.server.core\tmp0
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: CATALINA_HOME:         C:\apache-tomcat-8.5.38
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Command line argument: -Dcatalina.base=C:\Users\Home\Documents\workspace-sts-3.9.6.RELEASE\.metadata\.plugins\org.eclipse.wst.server.core\tmp0
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Command line argument: -Dcatalina.home=C:\apache-tomcat-8.5.38
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Command line argument: -Dwtp.deploy=C:\Users\Home\Documents\workspace-sts-3.9.6.RELEASE\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Command line argument: -Djava.endorsed.dirs=C:\apache-tomcat-8.5.38\endorsed
avr. 09, 2019 9:42:34 AM org.apache.catalina.startup.VersionLoggerListener log
INFOS: Command line argument: -Dfile.encoding=Cp1252
avr. 09, 2019 9:42:34 AM org.apache.catalina.core.AprLifecycleListener lifecycleEvent
INFOS: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [C:\Program Files\Java\jre1.8.0_201\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files/Java/jdk1.8.0_191/bin/../jre/bin/client;C:/Program Files/Java/jdk1.8.0_191/bin/../jre/bin;C:/Program Files/Java/jdk1.8.0_191/bin/../jre/lib/i386;"C:\Program Files\Java\jdk1.8.0_191\bin;";"C:\wamp\bin\php\php7.2.4;";C:\Program Files\Git\cmd;C:\wamp\bin\php\php7.2.4;C:\ProgramData\ComposerSetup\bin;C:\Program Files\Java\jdk1.8.0_191\bin;"C:\Program Files\Java\jdk1.8.0_191\bin;";"C:\wamp\bin\php\php7.2.4;";C:\Program Files\Git\cmd;C:\wamp\bin\php\php7.2.4;C:\ProgramData\ComposerSetup\bin;C:\Users\Home\AppData\Local\Microsoft\WindowsApps;C:\Users\Home\AppData\Roaming\Composer\vendor\bin;C:\sts-bundle\sts-3.9.6.RELEASE;;.]
avr. 09, 2019 9:42:37 AM org.apache.coyote.AbstractProtocol init
INFOS: Initializing ProtocolHandler ["http-nio-9090"]
avr. 09, 2019 9:42:40 AM org.apache.tomcat.util.net.NioSelectorPool getSharedSelector
INFOS: Using a shared selector for servlet write/read
avr. 09, 2019 9:42:40 AM org.apache.coyote.AbstractProtocol init
INFOS: Initializing ProtocolHandler ["ajp-nio-8090"]
avr. 09, 2019 9:42:40 AM org.apache.tomcat.util.net.NioSelectorPool getSharedSelector
INFOS: Using a shared selector for servlet write/read
avr. 09, 2019 9:42:40 AM org.apache.catalina.startup.Catalina load
INFOS: Initialization processed in 12201 ms
avr. 09, 2019 9:42:41 AM org.apache.catalina.core.StandardService startInternal
INFOS: Démarrage du service [Catalina]
avr. 09, 2019 9:42:41 AM org.apache.catalina.core.StandardEngine startInternal
INFOS: Starting Servlet Engine: Apache Tomcat/8.5.38
avr. 09, 2019 9:43:00 AM org.apache.catalina.core.ApplicationContext log
INFOS: No Spring WebApplicationInitializer types detected on classpath
avr. 09, 2019 9:43:00 AM org.apache.jasper.servlet.TldScanner scanJars
INFOS: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
avr. 09, 2019 9:43:01 AM org.apache.catalina.core.ApplicationContext log
INFOS: Initializing Spring root WebApplicationContext
INFO : org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization started
INFO : org.springframework.web.context.support.XmlWebApplicationContext - Refreshing Root WebApplicationContext: startup date [Tue Apr 09 09:43:02 WAT 2019]; root of context hierarchy
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from URL [file:/C:/Users/Home/Documents/workspace-sts-3.9.6.RELEASE/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/FSBpfe/WEB-INF/classes/applicationContext.xml]
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [config/beans-config.xml]
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [config/data-source-config.xml]
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [config/internationalisation-config.xml]
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [config/security-config.xml]
INFO : org.springframework.security.core.SpringSecurityCoreVersion - You are running with Spring Security Core 3.2.0.RELEASE
WARN : org.springframework.security.core.SpringSecurityCoreVersion - **** You are advised to use Spring 3.2.6.RELEASE or later with this version. You are running: 3.1.1.RELEASE
INFO : org.springframework.security.config.SecurityNamespaceHandler - Spring Security 'config' module version is 3.2.0.RELEASE
INFO : org.springframework.security.config.http.FilterInvocationSecurityMetadataSourceParser - Creating access control expression attribute 'hasAnyRole('ROlE_USER','ROLE_ADMIN')' for /home/
INFO : org.springframework.security.config.http.HttpSecurityBeanDefinitionParser - Checking sorted filter chain: [Root bean: class [org.springframework.security.web.context.SecurityContextPersistenceFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 200, Root bean: class [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 400, Root bean: class [org.springframework.security.web.authentication.logout.LogoutFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 700, <org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0>, order = 1100, Root bean: class [org.springframework.security.web.authentication.<a href="http://www.BasicAuthenticationFilter];" target="_blank">www.BasicAuthenticationFilter];</a> scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1500, Root bean: class [org.springframework.security.web.savedrequest.RequestCacheAwareFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1600, Root bean: class [org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1700, Root bean: class [org.springframework.security.web.authentication.AnonymousAuthenticationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 2000, Root bean: class [org.springframework.security.web.session.SessionManagementFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 2100, Root bean: class [org.springframework.security.web.access.ExceptionTranslationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 2200, <org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0>, order = 2300]
INFO : org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
INFO : org.springframework.beans.factory.support.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@239a9c: defining beans [articleDao,articleService,commentaireDao,commentaireService,compteDao,compteService,contactDao,contactService,donneeDao,donneeService,eventDao,eventService,fichEmDao,fichEmService,informationDao,informationService,mentionDao,mentionService,messageDao,messageService,messageRDao,messageRService,nouveauMessageDao,nouveauMessageService,nouvellesDao,nouvellesService,publicationDao,publicationService,questionDao,questionService,flickrDao,flickrService,supportDao,SupportService,dataSource,persistenceUnitManger,entityManagerFactory,transactionManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,org.springframework.security.filterChains,org.springframework.security.filterChainProxy,org.springframework.security.web.PortMapperImpl#0,org.springframework.security.web.PortResolverImpl#0,org.springframework.security.config.authentication.AuthenticationManagerFactoryBean#0,org.springframework.security.authentication.ProviderManager#0,org.springframework.security.web.context.HttpSessionSecurityContextRepository#0,org.springframework.security.web.authentication.session.CompositeSessionAuthenticationStrategy#0,org.springframework.security.web.savedrequest.HttpSessionRequestCache#0,org.springframework.security.web.access.expression.DefaultWebSecurityExpressionHandler#0,org.springframework.security.access.vote.AffirmativeBased#0,org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0,org.springframework.security.web.access.DefaultWebInvocationPrivilegeEvaluator#0,org.springframework.security.authentication.AnonymousAuthenticationProvider#0,org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint#0,org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0,org.springframework.security.userDetailsServiceFactory,org.springframework.security.web.DefaultSecurityFilterChain#0,org.springframework.security.provisioning.JdbcUserDetailsManager#0,org.springframework.security.authentication.dao.DaoAuthenticationProvider#0,org.springframework.security.authentication.DefaultAuthenticationEventPublisher#0,org.springframework.security.authenticationManager,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0]; root of factory hierarchy
INFO : org.springframework.jdbc.datasource.DriverManagerDataSource - Loaded JDBC driver: com.mysql.jdbc.Driver
INFO : org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean - Building JPA container EntityManagerFactory for persistence unit 'UP_FSB_PFE'
INFO : org.hibernate.annotations.common.Version - Hibernate Commons Annotations 3.2.0.Final
INFO : org.hibernate.cfg.Environment - Hibernate 3.6.0.Final
INFO : org.hibernate.cfg.Environment - hibernate.properties not found
INFO : org.hibernate.cfg.Environment - Bytecode provider name : javassist
INFO : org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
INFO : org.hibernate.ejb.Version - Hibernate EntityManager 3.6.0.Final
INFO : org.hibernate.ejb.Ejb3Configuration - Processing PersistenceUnitInfo [
	name: UP_FSB_PFE
	...]
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Mention
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Mention on table Mention
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Date
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Date on table Date
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Publication
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Publication on table Publication
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Question
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Support
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Support on table Support
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Event
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Message
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Message on table Message
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.NouveauMessage
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Role
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Role on table Role
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Donnee
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Donnee on table Donnee
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Article
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Article on table Article
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.FichEm
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.FichEm on table FichEm
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Information
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Commentaire
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Commentaire on table Commentaire
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Contact
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Contact on table Contact
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Nouvelles
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.Compte
INFO : org.hibernate.cfg.annotations.EntityBinder - Bind entity com.pfe.it.entities.Compte on table Compte
INFO : org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: com.pfe.it.entities.MessageR
INFO : org.hibernate.cfg.annotations.CollectionBinder - Mapping collection: com.pfe.it.entities.Compte.roles -> Role
INFO : org.hibernate.cfg.Configuration - Hibernate Validator not found: ignoring
INFO : org.hibernate.validator.util.Version - Hibernate Validator 4.1.0.Final
INFO : org.hibernate.validator.engine.resolver.DefaultTraversableResolver - Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
INFO : org.hibernate.validator.engine.resolver.DefaultTraversableResolver - Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
INFO : org.hibernate.validator.engine.resolver.DefaultTraversableResolver - Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
INFO : org.hibernate.cfg.search.HibernateSearchEventListenerRegister - Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
INFO : org.hibernate.connection.ConnectionProviderFactory - Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
INFO : org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider - Using provided datasource
INFO : org.hibernate.cfg.SettingsFactory - Database ->
       name : MySQL
    version : 5.7.21
      major : 5
      minor : 7
INFO : org.hibernate.cfg.SettingsFactory - Driver ->
       name : MySQL-AB JDBC Driver
    version : mysql-connector-java-5.1.6 ( Revision: ${svn.Revision} )
      major : 5
      minor : 1
INFO : org.hibernate.dialect.Dialect - Using dialect: org.hibernate.dialect.MySQLDialect
INFO : org.hibernate.engine.jdbc.JdbcSupportLoader - Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
INFO : org.hibernate.transaction.TransactionFactoryFactory - Transaction strategy: org.hibernate.transaction.JDBCTransactionFactory
INFO : org.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
INFO : org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled
INFO : org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled
INFO : org.hibernate.cfg.SettingsFactory - JDBC batch size: 15
INFO : org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled
INFO : org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled
INFO : org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled
INFO : org.hibernate.cfg.SettingsFactory - Connection release mode: auto
INFO : org.hibernate.cfg.SettingsFactory - Maximum outer join fetch depth: 2
INFO : org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1
INFO : org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled
INFO : org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled
INFO : org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled
INFO : org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
INFO : org.hibernate.hql.ast.ASTQueryTranslatorFactory - Using ASTQueryTranslatorFactory
INFO : org.hibernate.cfg.SettingsFactory - Query language substitutions: {}
INFO : org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: enabled
INFO : org.hibernate.cfg.SettingsFactory - Second-level cache: enabled
INFO : org.hibernate.cfg.SettingsFactory - Query cache: disabled
INFO : org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
INFO : org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled
INFO : org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled
INFO : org.hibernate.cfg.SettingsFactory - Echoing all SQL to stdout
INFO : org.hibernate.cfg.SettingsFactory - Statistics: disabled
INFO : org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled
INFO : org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo
INFO : org.hibernate.cfg.SettingsFactory - Named query checking : enabled
INFO : org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): disabled
INFO : org.hibernate.impl.SessionFactoryImpl - building session factory
INFO : org.hibernate.impl.SessionFactoryObjectFactory - Not binding factory to JNDI, no JNDI name configured
INFO : org.hibernate.tool.hbm2ddl.SchemaUpdate - Running hbm2ddl schema update
INFO : org.hibernate.tool.hbm2ddl.SchemaUpdate - fetching database metadata
INFO : org.hibernate.tool.hbm2ddl.SchemaUpdate - updating schema
INFO : org.hibernate.validator.engine.resolver.DefaultTraversableResolver - Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.article
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [idarticle, photo]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.commentaire
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [idcom, contenu]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.compte
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [categorie, photo, idcpt, login, pwd, nom, prenom, donnee_iduser, actived]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [fk78a421e0686b887b, primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.compte_contact
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [grouppart_idcontact, compte_idcpt]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [fk4b53a4a121850f83, grouppart_idcontact, fk4b53a4a1b510a222]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.compte_message
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [messages_codemsg, compte_idcpt]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [messages_codemsg, fk4b87808821850f83, fk4b8780885eef06f2]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.contact
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [categorie, y, idcontact, poste, nom, prenom]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.date
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [iddate]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.donnee
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [iduser, categorie, mail, formation, dipl, certification, compte_idcpt, computile, prom, fonction, ntel, diplome, promotion]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [fk7a59658b21850f83, primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.donnee_fichem
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [fich_idfich, donnee_iduser]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [fk3c57c4848cc53940, fich_idfich, fk3c57c484686b887b]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.fichem
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [entreprise, computils, duree, annee, poste, compacquise, rech, idfich]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.mention
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [idmention, mot]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.message
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [date, adressdest, codemsg, type_msg, adresssource, contenu, etat]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.publication
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [date, support_idsupport, partie, invitation, titre, importance, source, type, contenu, temps, idcompte, codepub, datedebut, datefin, compte]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [fk23254a0c6bd5261d, primary, fk23254a0c130beeb1]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.publication_mention
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [publication_codepub, mentions_idmention]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [mentions_idmention, fk11ddda9748133073, fk11ddda975ec251cd]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.role
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [idrole, namerole, idcpt]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [fk26f4962478c6c2, primary]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - table found: FsbPfe.support
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - columns: [chaine, idsupport]
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
INFO : org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [primary]
INFO : org.hibernate.tool.hbm2ddl.SchemaUpdate - schema update complete
INFO : org.springframework.security.provisioning.JdbcUserDetailsManager - No authentication manager set. Reauthentication of users when changing passwords will not be performed.
INFO : org.springframework.security.web.DefaultSecurityFilterChain - Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.SecurityContextPersistenceFilter@1c931df, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1f19415, org.springframework.security.web.authentication.logout.LogoutFilter@15dacf3, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@33c75c, org.springframework.security.web.authentication.<a href="http://www.BasicAuthenticationFilter@2e4b8c" target="_blank">www.BasicAuthenticationFilter@2e4b8c</a>, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1c82f20, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1dc3e9e, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@15d0a5e, org.springframework.security.web.session.SessionManagementFilter@1115852, org.springframework.security.web.access.ExceptionTranslationFilter@11aca3f, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@106374c]
INFO : org.springframework.security.config.http.DefaultFilterChainValidator - Checking whether login URL '/' is accessible with your configuration
INFO : org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 23824 ms
avr. 09, 2019 9:43:25 AM org.apache.catalina.core.StandardContext filterStart
GRAVE: Exception au démarrage du filtre [springSecurityFilterChain]
java.lang.ClassNotFoundException: org.springframework.web.filter.DelegatingfilterProxy
	at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1364)
	at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1185)
	at org.apache.catalina.core.DefaultInstanceManager.loadClass(DefaultInstanceManager.java:546)
	at org.apache.catalina.core.DefaultInstanceManager.loadClassMaybePrivileged(DefaultInstanceManager.java:527)
	at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:150)
	at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:264)
	at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:108)
	at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:4662)
	at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5309)
	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
	at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1423)
	at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1413)
	at java.util.concurrent.FutureTask.run(Unknown Source)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
	at java.lang.Thread.run(Unknown Source)
 
avr. 09, 2019 9:43:25 AM org.apache.catalina.core.StandardContext startInternal
GRAVE: One or more Filters failed to start. Full details will be found in the appropriate container log file
avr. 09, 2019 9:43:25 AM org.apache.catalina.core.StandardContext startInternal
GRAVE: Erreur de démarrage du contexte [/it] suite aux erreurs précédentes
avr. 09, 2019 9:43:25 AM org.apache.catalina.core.ApplicationContext log
INFOS: Closing Spring root WebApplicationContext
INFO : org.springframework.web.context.support.XmlWebApplicationContext - Closing Root WebApplicationContext: startup date [Tue Apr 09 09:43:02 WAT 2019]; root of context hierarchy
INFO : org.springframework.beans.factory.support.DefaultListableBeanFactory - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@239a9c: defining beans [articleDao,articleService,commentaireDao,commentaireService,compteDao,compteService,contactDao,contactService,donneeDao,donneeService,eventDao,eventService,fichEmDao,fichEmService,informationDao,informationService,mentionDao,mentionService,messageDao,messageService,messageRDao,messageRService,nouveauMessageDao,nouveauMessageService,nouvellesDao,nouvellesService,publicationDao,publicationService,questionDao,questionService,flickrDao,flickrService,supportDao,SupportService,dataSource,persistenceUnitManger,entityManagerFactory,transactionManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,org.springframework.security.filterChains,org.springframework.security.filterChainProxy,org.springframework.security.web.PortMapperImpl#0,org.springframework.security.web.PortResolverImpl#0,org.springframework.security.config.authentication.AuthenticationManagerFactoryBean#0,org.springframework.security.authentication.ProviderManager#0,org.springframework.security.web.context.HttpSessionSecurityContextRepository#0,org.springframework.security.web.authentication.session.CompositeSessionAuthenticationStrategy#0,org.springframework.security.web.savedrequest.HttpSessionRequestCache#0,org.springframework.security.web.access.expression.DefaultWebSecurityExpressionHandler#0,org.springframework.security.access.vote.AffirmativeBased#0,org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0,org.springframework.security.web.access.DefaultWebInvocationPrivilegeEvaluator#0,org.springframework.security.authentication.AnonymousAuthenticationProvider#0,org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint#0,org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0,org.springframework.security.userDetailsServiceFactory,org.springframework.security.web.DefaultSecurityFilterChain#0,org.springframework.security.provisioning.JdbcUserDetailsManager#0,org.springframework.security.authentication.dao.DaoAuthenticationProvider#0,org.springframework.security.authentication.DefaultAuthenticationEventPublisher#0,org.springframework.security.authenticationManager,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0]; root of factory hierarchy
INFO : org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'UP_FSB_PFE'
INFO : org.hibernate.impl.SessionFactoryImpl - closing
avr. 09, 2019 9:43:25 AM org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc
AVERTISSEMENT: The web application [it] registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
avr. 09, 2019 9:43:25 AM org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
AVERTISSEMENT: The web application [it] appears to have started a thread named [MySQL Statement Cancellation Timer] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.lang.Object.wait(Native Method)
 java.lang.Object.wait(Unknown Source)
 java.util.TimerThread.mainLoop(Unknown Source)
 java.util.TimerThread.run(Unknown Source)
avr. 09, 2019 9:43:26 AM org.apache.coyote.AbstractProtocol start
INFOS: Starting ProtocolHandler ["http-nio-9090"]
avr. 09, 2019 9:43:26 AM org.apache.coyote.AbstractProtocol start
INFOS: Starting ProtocolHandler ["ajp-nio-8090"]
avr. 09, 2019 9:43:26 AM org.apache.catalina.startup.Catalina start
INFOS: Server startup in 45443 ms