Bonjour,

J'ai cet exception :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
 
 
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.transaction.interceptor.TransactionInterceptor#0': Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'transactionManagerBeanName' of bean class [org.springframework.transaction.interceptor.TransactionInterceptor]: Bean property 'transactionManagerBeanName' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?
voici mon web.xml :
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
 
<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >
 
<web-app>
  <display-name>Archetype Created Web Application</display-name>
 
 
    <context-param>
 
      <param-name>contextConfigLocation</param-name>
      <param-value>
        /WEB-INF/applicationContextJpa.xml
        /WEB-INF/applicationContext-security.xml
      </param-value>
    </context-param>  
 
      <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>
    
      
    
    
 
 
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
  
  <servlet>
    <servlet-name>ControllerServlet</servlet-name>
    <display-name>ControllerServlet</display-name>
    <description></description>
    <servlet-class>com.nexans.common.controller.ControllerServlet</servlet-class>
    <init-param>
      <param-name>Extention</param-name>
      <param-value>nx</param-value>
    </init-param>
   
   
    <init-param>
      <param-name>SessionValidator</param-name>
      <param-value>com.sanxe.arworkflow.model.SessionValidator</param-value>
    </init-param>
    <init-param>
      <param-name>ServiceConfig</param-name>
      <param-value>nxservicetoworker.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  
  <servlet-mapping>
    <servlet-name>ControllerServlet</servlet-name>
    <url-pattern>*.nx</url-pattern>
  </servlet-mapping>
  
</web-app>
MERCI