IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Spring Java Discussion :

Classe @Autowired mais NullPointer à l'utilisation


Sujet :

Spring Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Inscrit en
    Mars 2009
    Messages
    35
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 35
    Par défaut Classe @Autowired mais NullPointer à l'utilisation
    Bonjour,

    J'ai un problème d'instance sur une classe @Autowired.

    Dans une classe annotée @Service, je vai appelle à une autre classe qui elle aussi est annotée @Service par le biais @Autowired:
    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
     
    @Service
    public class ServiceLoad implements IServiceLoad {
     
     
    	@Autowired
    	private ServiceGet serviceGet;
     
     
    	public String getString(String toto){
     
    		return serviceGet.loadString(toto);
     
    	}
     
     
    }
     
    @Service
    public class ServiceGet implements IServiceGet {
     
     
     
    	public String loadString(String toto){
     
    		return toto;
     
    	}
     
    }
    L'injection spring ce passe bien ca je n'ai pas d'erreur dans les logs, seulement quand je fais appel à mon service ServiceLoad via SoaupUI,
    la classe ServiceGet est null, donc je tombe en nullpointer.


    Voici mon applicationContext;
    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
     
     
    	<!-- Services  à découvrir -->
    	<context:component-scan base-package="fr.toto" />
     
    	<!-- Active l'utilisation d'annotations type @Service, @Repository, etc -->
    	<context:annotation-config/>
     
     
    		<!-- Utilitaire portant le contexte de l'application Spring. -->
    	<bean class="fr.toto.transverse.ApplicationContextUtils" />
     
    	<!-- Initialise log4j -->
    	<bean id="log4jInitialization"
    		class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
    		<property name="targetClass" value="org.springframework.util.Log4jConfigurer" />
    		<property name="targetMethod" value="initLogging" />
    		<property name="arguments">
    			<list>
    				<value>classpath:\resources\log\log4j.properties</value>
    			</list>
    		</property>
    	</bean>
    ma classe ApplicationContextUtils:
    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
    public class ApplicationContextUtils implements ApplicationContextAware {
     
        /**
         * Contexte de l'application Spring.
         */
        private static ApplicationContext contexte = null;
     
        /**
         * @see com.bea.core.repackaged.springframework.context.ApplicationContextAware#setApplicationContext(com.bea.core.repackaged.springframework.context.ApplicationContext)
         */
        public void setApplicationContext(final ApplicationContext applicationContext) throws BeansException {
            contexte = applicationContext;
        }
     
        /**
         * Retourne le contexte de l'application Spring.
         * 
         * @return {@link ApplicationContext}
         */
        public static ApplicationContext getApplicationContext() {
            return contexte;
        }
     
    }

    et mon web.xml utilisé pour un déploiement sous tomcat:
    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
     
     
     
    <web-app>
     
     
      <display-name>Apache-Axis</display-name>
     
     
    	<context-param>
    		<param-name>contextConfigLocation</param-name>
    		<param-value>classpath:\resources\spring\applicationContext.xml</param-value>
    	</context-param>
     
    	<listener>
    	    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    	</listener>
     
      <servlet>
        <servlet-name>AxisServlet</servlet-name>
        <display-name>Apache-Axis Servlet</display-name>
        <!-- <servlet-class>
            org.apache.axis.transport.http.AxisServlet
        </servlet-class> -->
        <servlet-class>
            fr.asi.servlet.ContentLengthWsdlAxisServlet
        </servlet-class>
      </servlet>
     
      <servlet>
        <servlet-name>AdminServlet</servlet-name>
        <display-name>Axis Admin Servlet</display-name>
        <servlet-class>
            org.apache.axis.transport.http.AdminServlet
        </servlet-class>
        <load-on-startup>100</load-on-startup>
      </servlet>
     
      <servlet>
        <servlet-name>SOAPMonitorService</servlet-name>
        <display-name>SOAPMonitorService</display-name>
        <servlet-class>
            org.apache.axis.monitor.SOAPMonitorService
        </servlet-class>
        <init-param>
          <param-name>SOAPMonitorPort</param-name>
          <param-value>5001</param-value>
        </init-param>
        <load-on-startup>100</load-on-startup>
      </servlet>
     
    <servlet>
    	<servlet-name>ParamServlet</servlet-name>
    	<display-name>Servlet de parametrage</display-name>
    	<description>Servlet chargant le parametrage dans les proprietes systeme</description>
    	<servlet-class>fr.asi.servlet.LoadOnStartupServlet</servlet-class>
    	<init-param>
          <param-name>properties-file</param-name>
          <param-value>WEB-INF/sage.properties</param-value>
        </init-param>
    	<load-on-startup>1</load-on-startup>
    </servlet>
     
      <servlet-mapping>
        <servlet-name>AxisServlet</servlet-name>
        <url-pattern>/servlet/AxisServlet</url-pattern>
      </servlet-mapping>
     
      <servlet-mapping>
        <servlet-name>AxisServlet</servlet-name>
        <url-pattern>*.jws</url-pattern>
      </servlet-mapping>
     
      <servlet-mapping>
        <servlet-name>AxisServlet</servlet-name>
        <url-pattern>/services/*</url-pattern>
      </servlet-mapping>
     
      <servlet-mapping>
        <servlet-name>SOAPMonitorService</servlet-name>
        <url-pattern>/SOAPMonitor</url-pattern>
      </servlet-mapping>
     
     
     <!-- uncomment this if you want the admin servlet -->
     
      <servlet-mapping>
        <servlet-name>AdminServlet</servlet-name>
        <url-pattern>/servlet/AdminServlet</url-pattern>
      </servlet-mapping>
     
     
        <!-- currently the W3C havent settled on a media type for WSDL;
        http://www.w3.org/TR/2003/WD-wsdl12-20030303/#ietf-draft
        for now we go with the basic 'it's XML' response -->
      <mime-mapping>
        <extension>wsdl</extension>
         <mime-type>text/xml</mime-type>
      </mime-mapping>
      
     
      <mime-mapping>
        <extension>xsd</extension>
        <mime-type>text/xml</mime-type>
      </mime-mapping>
     
      <welcome-file-list id="WelcomeFileList">
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>index.jws</welcome-file>
      </welcome-file-list>
     
        
    </web-app>
    Avez vous une solution à mon problème car en test Junit cela fonctionne bien ? Merci D'avance, Damien.

  2. #2
    Rédacteur/Modérateur
    Avatar de andry.aime
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    8 391
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Ile Maurice

    Informations forums :
    Inscription : Septembre 2007
    Messages : 8 391
    Par défaut
    Bonjour,

    private ServiceGet serviceGet;
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    private IServiceGet serviceGet;
    Et pour la classe ApplicationContextUtils, respecte les règles de nomenclature de javabeans.
    public static ApplicationContext getApplicationContext() {
    return contexte;
    }
    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
    public class ApplicationContextUtils implements ApplicationContextAware {
     
        /**
         * applicationContext de l'application Spring.
         */
        private static ApplicationContext applicationContext = null;
     
        /**
         * @see com.bea.core.repackaged.springframework.context.ApplicationContextAware#setApplicationContext(com.bea.core.repackaged.springframework.context.ApplicationContext)
         */
        public void setApplicationContext(final ApplicationContext applicationContext) throws BeansException {
            this.applicationContext = applicationContext;
        }
     
        /**
         * Retourne le applicationContext de l'application Spring.
         * 
         * @return {@link ApplicationContext}
         */
        public static ApplicationContext getApplicationContext() {
            return applicationContext;
        }
     
    }
    A+.

  3. #3
    Membre averti
    Inscrit en
    Mars 2009
    Messages
    35
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 35
    Par défaut
    Merci pour ta réponse,

    Mais le problème reste. je tombe toujours en nullPointer

  4. #4
    Membre averti
    Inscrit en
    Mars 2009
    Messages
    35
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 35
    Par défaut
    Je me demande si il ne manque pas quelque chose dans mon web.xml non ?

  5. #5
    Rédacteur/Modérateur
    Avatar de andry.aime
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    8 391
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Ile Maurice

    Informations forums :
    Inscription : Septembre 2007
    Messages : 8 391
    Par défaut
    Re,

    La déclaration du path du fichier ApplicationContext.xml dans le web.xml n'est pas bon. "resources" est une racine de classpath, et utilise aussi "/" comme séparateur dans le chemin
    Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
    <param-value>classpath:/spring/applicationContext.xml</param-value>
    Tu n'as d'erreur dans le log de ton serveur lors de son déployement et démarrage?

    A+.

  6. #6
    Membre averti
    Inscrit en
    Mars 2009
    Messages
    35
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 35
    Par défaut
    Toujours pas, j'ai un FileNotFound:

    Caused by: java.io.FileNotFoundException: class path resource [spring/applicationContext.xml] cannot be opened because it does not exist


    Je vous met les logs avec /resources/spring/applicationContext.xml en debug, pour moi il n'y a rien d'anormal:

    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
     
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'log4jInitialization'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Returning cached instance of singleton bean 'serviceAffaireClientImpl'
    2012-08-24 11:02:26;;;AutowiredAnnotationBeanPostProcessor;DEBUG;Autowiring by type from bean name 'servicePreparationFacturationImpl' to bean named 'serviceAffaireClientImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'servicePreparationFacturationImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceGestionProjetImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceGestionProjetImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceGestionProjetImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.projet.impl.ServiceGestionProjetImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.projet.impl.ServiceGestionProjetImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceGestionProjetImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceSuiviProjetImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceSuiviProjetImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceSuiviProjetImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.projet.impl.ServiceSuiviProjetImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.projet.impl.ServiceSuiviProjetImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceSuiviProjetImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceCaPrevisionnelImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceCaPrevisionnelImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceCaPrevisionnelImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceCaPrevisionnelImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceCaPrevisionnelImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'ligneCAPrevi' of type [fr.asi.services.restitution.beans.LigneCaPrevi]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceCaPrevisionnelImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceFacturationFraisFournisseurImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceFacturationFraisFournisseurImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceFacturationFraisFournisseurImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceFacturationFraisFournisseurImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceFacturationFraisFournisseurImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceFacturationFraisFournisseurImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceFacturationInterneImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceFacturationInterneImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceFacturationInterneImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceFacturationInterneImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceFacturationInterneImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceFacturationInterneImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceFacturationTransverseImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceFacturationTransverseImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceFacturationTransverseImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceFacturationTransverseImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceFacturationTransverseImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceFacturationTransverseImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceListeFacturationForfaitImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceListeFacturationForfaitImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceListeFacturationForfaitImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceListeFacturationForfaitImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceListeFacturationForfaitImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceListeFacturationForfaitImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceRapportActiviteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceRapportActiviteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceRapportActiviteImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceRapportActiviteImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceRapportActiviteImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'activiteDesc' of type [fr.asi.services.restitution.beans.ActiviteDesc]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'affaireDesc' of type [fr.asi.services.restitution.beans.AffaireDesc]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'clientDesc' of type [fr.asi.services.restitution.beans.ClientDesc]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'personneActiProjet' of type [fr.asi.services.restitution.beans.PersonneActiProjet]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'rapportActiviteDesc' of type [fr.asi.services.restitution.beans.RapportActiviteDesc]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'semaineActivite' of type [fr.asi.services.restitution.beans.SemaineActivite]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceRapportActiviteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceRestitutionCAImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceRestitutionCAImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceRestitutionCAImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceRestitutionCAImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceRestitutionCAImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'ligneCA' of type [fr.asi.services.restitution.beans.LigneCA]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceRestitutionCAImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceTACEAlimDWImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceTACEAlimDWImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceTACEAlimDWImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceTACEAlimDWImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceTACEAlimDWImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceTACEAlimDWImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceTpsPassesSTImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceTpsPassesSTImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceTpsPassesSTImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.restitution.impl.ServiceTpsPassesSTImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.restitution.impl.ServiceTpsPassesSTImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceTpsPassesSTImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceExportSciformaImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceExportSciformaImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceExportSciformaImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.sciforma.impl.ServiceExportSciformaImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.sciforma.impl.ServiceExportSciformaImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'activitePrevisionnelle' of type [java.lang.String]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'conges' of type [java.lang.String]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceExportSciformaImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceSyncSugarImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceSyncSugarImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceSyncSugarImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.sugar.impl.ServiceSyncSugarImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.sugar.impl.ServiceSyncSugarImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceSyncSugarImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'fr.asi.tace.impl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'fr.asi.tace.impl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'fr.asi.tace.impl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.tace.impl.ServiceTACEAlimDWImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.tace.impl.ServiceTACEAlimDWImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'fr.asi.tace.impl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceTACEImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceTACEImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceTACEImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.tace.impl.ServiceTACEImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.tace.impl.ServiceTACEImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'allCRHAgencesTransverses' of type [java.util.Vector]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceTACEImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceTACESocieteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceTACESocieteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceTACESocieteImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.tace.impl.ServiceTACESocieteImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.tace.impl.ServiceTACESocieteImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceTACESocieteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceControlActiviteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceControlActiviteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceControlActiviteImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.validationCrh.impl.ServiceControlActiviteImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.validationCrh.impl.ServiceControlActiviteImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceControlActiviteImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceCorrectionCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceCorrectionCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceCorrectionCRHImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.validationCrh.impl.ServiceCorrectionCRHImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.validationCrh.impl.ServiceCorrectionCRHImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceCorrectionCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceDevaliderCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceDevaliderCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceDevaliderCRHImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.validationCrh.impl.ServiceDevaliderCRHImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.validationCrh.impl.ServiceDevaliderCRHImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'ensembleCollaborateur' of type [java.util.Vector]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceDevaliderCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceLoadCollaborateursImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceLoadCollaborateursImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceLoadCollaborateursImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.validationCrh.impl.ServiceLoadCollaborateursImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.validationCrh.impl.ServiceLoadCollaborateursImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceLoadCollaborateursImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceValidationCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceValidationCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceValidationCRHImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.validationCrh.impl.ServiceValidationCRHImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.validationCrh.impl.ServiceValidationCRHImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceValidationCRHImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'serviceWorkflowImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'serviceWorkflowImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'serviceWorkflowImpl' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.services.workflow.impl.ServiceWorkflowImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.services.workflow.impl.ServiceWorkflowImpl]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'agence' of type [java.lang.String]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'typeWorkflow' of type [java.lang.String]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'serviceWorkflowImpl'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating shared instance of singleton bean 'fr.asi.transverse.ApplicationContextUtils#0'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Creating instance of bean 'fr.asi.transverse.ApplicationContextUtils#0'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Eagerly caching bean 'fr.asi.transverse.ApplicationContextUtils#0' to allow for resolving potential circular references
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Getting BeanInfo for class [fr.asi.transverse.ApplicationContextUtils]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Caching PropertyDescriptors for class [fr.asi.transverse.ApplicationContextUtils]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'applicationContext' of type [org.springframework.context.ApplicationContext]
    2012-08-24 11:02:26;;;CachedIntrospectionResults;DEBUG;Found bean property 'class' of type [java.lang.Class]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Finished creating instance of bean 'fr.asi.transverse.ApplicationContextUtils#0'
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Returning cached instance of singleton bean 'log4jInitialization'
    2012-08-24 11:02:26;;;XmlWebApplicationContext;DEBUG;Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [org.springframework.context.support.DefaultLifecycleProcessor@1ae637f0]
    2012-08-24 11:02:26;;;DefaultListableBeanFactory;DEBUG;Returning cached instance of singleton bean 'lifecycleProcessor'
    2012-08-24 11:02:26;;;XmlWebApplicationContext;DEBUG;Publishing event in Root WebApplicationContext: org.springframework.context.event.ContextRefreshedEvent[source=Root WebApplicationContext: startup date [Fri Aug 24 11:02:20 CEST 2012]; root of context hierarchy]
    2012-08-24 11:02:26;;;ContextLoader;DEBUG;Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
    2012-08-24 11:02:26;;;ContextLoader;INFO;Root WebApplicationContext: initialization completed in 5681 ms

Discussions similaires

  1. Réponses: 2
    Dernier message: 16/07/2007, 14h54
  2. class héritant de Form, impossible à utiliser ?
    Par Pol63 dans le forum VB.NET
    Réponses: 9
    Dernier message: 01/06/2007, 09h25
  3. Réponses: 3
    Dernier message: 01/05/2007, 17h58
  4. Importation DLL ok, mais pas l'utilisation
    Par penchu dans le forum Windows Forms
    Réponses: 6
    Dernier message: 01/03/2007, 15h58
  5. [XSLT] - Modèle réutilisable... mais comment l'utiliser.
    Par jacquesh dans le forum XSL/XSLT/XPATH
    Réponses: 4
    Dernier message: 17/02/2006, 11h07

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo