Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8859433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:03:42+00:00 2026-06-14T15:03:42+00:00

I’m getting stuck with a NullPointerException on my EntityManager in my services classes. My

  • 0

I’m getting stuck with a NullPointerException on my EntityManager in my services classes.
My spring singletons are perfectly instanciated, my persitance-unit too as far as I can see from the JSBOSS war deployment logs.

Here is my code:
persistence.xml:

<persistence-unit name="sisweb-edi" transaction-type="JTA">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <jta-data-source>java:/jdbc/sisweb-edi</jta-data-source>

    <class>com.sis.web.edi.domain.Codification</class>
    <class>com.sis.web.edi.domain.Dossier</class>
    <exclude-unlisted-classes/>

    <properties>
        <property name="hibernate.hbm2ddl.auto" value="validate"/>
        <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
        <property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.ImprovedNamingStrategy"/>
    </properties>
</persistence-unit>

JBOSS DS definition:

<datasource jta="true" jndi-name="java:/jdbc/sisweb-edi" pool-name="sisweb-edi" enabled="true" use-ccm="false">
  <connection-url>jdbc:oracle:thin:@xxx:1521:xxx</connection-url>
  <driver-class>oracle.jdbc.OracleDriver</driver-class>
  <driver>oracle.jdbc</driver>
  <security>
    <user-name>xxx</user-name>
    <password>xxx</password>
  </security>
  <validation>
    <validate-on-match>false</validate-on-match>
    <background-validation>false</background-validation>
  </validation>
  <statement>
   <share-prepared-statements>false</share-prepared-statements>
  </statement>
</datasource>

CodificationService.java :

@Named
public class CodificationService {

/**
 * EntityManager
 */
@PersistenceContext(unitName = "sisweb-edi")
private EntityManager em;

/**
 * Get the Codification by the typeVoie
 * 
 * @param typeVoie String
 * @return Codification
 */
public Codification getCodificationByTypeVoie(String typeVoie) {
    Query query = em.createNamedQuery(Codification.Q_FIND_BY_TYPE_VOIE);
    query.setParameter(Codification.P_TYPE_VOIE, typeVoie);
    return (Codification) query.getSingleResult();
}
}

And finally the logs gotten from the server bootstrat until the NullPointerException:

19:32:12,316 INFO  [org.jboss.modules] JBoss Modules version 1.1.1.GA
19:32:12,623 INFO  [org.jboss.msc] JBoss MSC version 1.0.2.GA
19:32:12,700 INFO  [org.jboss.as] JBAS015899: JBoss AS 7.1.1.Final "Brontes" starting
19:32:13,782 INFO  [org.xnio] XNIO Version 3.0.3.GA
19:32:13,783 INFO  [org.jboss.as.server] JBAS015888: Creating http management service     using socket-binding (management-http)
19:32:13,794 INFO  [org.xnio.nio] XNIO NIO Implementation Version 3.0.3.GA
19:32:13,802 INFO  [org.jboss.remoting] JBoss Remoting version 3.2.3.GA
19:32:13,827 INFO  [org.jboss.as.logging] JBAS011502: Removing bootstrap log handlers
19:32:13,835 INFO  [org.jboss.as.configadmin] (ServerService Thread Pool -- 26) JBAS016200: Activating ConfigAdmin Subsystem
19:32:13,848 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 38) JBAS011800: Activating Naming Subsystem
19:32:13,853 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 31) JBAS010280: Activating Infinispan subsystem.
19:32:13,855 INFO  [org.jboss.as.osgi] (ServerService Thread Pool -- 39) JBAS011940: Activating OSGi Subsystem
19:32:13,891 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 48) JBAS015537: Activating WebServices Extension
19:32:13,900 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 44) JBAS013101: Activating Security Subsystem
19:32:13,907 INFO  [org.jboss.as.security] (MSC service thread 1-5) JBAS013100: Current PicketBox version=4.0.7.Final
19:32:14,004 INFO  [org.jboss.as.connector] (MSC service thread 1-7) JBAS010408: Starting JCA Subsystem (JBoss IronJacamar 1.0.9.Final)
19:32:14,006 INFO  [org.jboss.as.naming] (MSC service thread 1-7) JBAS011802: Starting Naming Service
19:32:14,053 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-1) JBAS015400: Bound mail session [java:jboss/mail/Default]
19:32:14,160 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 27) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
19:32:14,182 INFO  [org.jboss.ws.common.management.AbstractServerConfig] (MSC service thread 1-8) JBoss Web Services - Stack CXF Server 4.0.2.GA
19:32:14,281 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 27) JBAS010403: Deploying JDBC-compliant driver class oracle.jdbc.OracleDriver (version 11.2)
19:32:14,641 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "sisweb-edi.war"
19:32:14,647 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-5) JBAS015012: Started FileSystemDeploymentService for directory D:\tools\jboss-as-7.1.1.Final\standalone\deployments
19:32:14,936 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-7) JBAS010400: Bound data source [java:/jdbc/sisweb-edi]
19:32:14,936 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
19:32:16,795 INFO  [org.jboss.as.jpa] (MSC service thread 1-2) JBAS011401: Read persistence.xml for sisweb-edi
19:32:17,268 INFO  [org.jboss.as.jpa] (MSC service thread 1-6) JBAS011402: Starting Persistence Unit Service 'sisweb-edi.war#sisweb-edi'
19:32:17,479 INFO  [org.hibernate.annotations.common.Version] (MSC service thread 1-6) HCANN000001: Hibernate Commons Annotations {4.0.1.Final}
19:32:17,487 INFO  [org.hibernate.Version] (MSC service thread 1-6) HHH000412: Hibernate Core {4.0.1.Final}
19:32:17,490 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-6) HHH000206: hibernate.properties not found
19:32:17,493 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-6) HHH000021: Bytecode provider name : javassist
19:32:17,521 INFO  [org.hibernate.ejb.Ejb3Configuration] (MSC service thread 1-6) HHH000204: Processing PersistenceUnitInfo [name: sisweb-edi...]
19:32:17,846 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-6) HHH000038: Composite-id class does not override equals(): com.sis.web.edi.domain.CodificationPK
19:32:17,847 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-6) HHH000039: Composite-id class does not override hashCode(): com.sis.web.edi.domain.CodificationPK
19:32:17,852 INFO  [org.hibernate.service.jdbc.connections.internal.ConnectionProviderInitiator] (MSC service thread 1-6) HHH000130: Instantiating explicit connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
19:32:18,172 INFO  [org.hibernate.dialect.Dialect] (MSC service thread 1-6) HHH000400: Using dialect: org.hibernate.dialect.Oracle10gDialect
19:32:18,191 INFO  [org.hibernate.engine.transaction.internal.TransactionFactoryInitiator] (MSC service thread 1-6) HHH000268: Transaction strategy: org.hibernate.engine.transaction.internal.jta.CMTTransactionFactory
19:32:18,195 INFO  [org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory] (MSC service thread 1-6) HHH000397: Using ASTQueryTranslatorFactory
19:32:18,241 INFO  [org.hibernate.validator.util.Version] (MSC service thread 1-6) Hibernate Validator 4.2.0.Final
19:32:18,656 INFO  [org.hibernate.tool.hbm2ddl.SchemaValidator] (MSC service thread 1-6) HHH000229: Running schema validator
19:32:18,657 INFO  [org.hibernate.tool.hbm2ddl.SchemaValidator] (MSC service thread 1-6) HHH000102: Fetching database metadata
19:32:18,777 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-6) HHH000261: Table found: SARAXO.CODIFICATION
19:32:18,778 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-6) HHH000037: Columns: [cod_valide, ns_class, cod_itineraire_type, cod_palette_ordre_aff, cod_temps_armement, cod_libelle_court, cod_moyen_type, cod_scenario, cod_facturation, cod_libelle, cod_icone_nom, cod_code_fiche, cod_profil, cod_dec_t_moy, cod_action, cod_type, cod_ordre_aff, cod_rayon_base, cod_exec_ok, cod_rayon_palier, cod_zoom_max, cod_code, cod_libelle_google, cod_ordre_sta, cod_code_famille]
19:32:18,862 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-6) HHH000261: Table found: SARAXO.DOSSIER
19:32:18,864 INFO  [org.hibernate.tool.hbm2ddl.TableMetadata] (MSC service thread 1-6) HHH000037: Columns: [dos_int_type_voie, dos_raison, dos_date_sys, dos_nb_victime, dos_provenance, dos_poste_tel, dos_dec_sid, dos_incarcere, dos_int_etg, dos_devenir, dos_raison_lib, dos_t2_service, doss_proprietaire, dos_ope2, dos_ope1, dos_t2, dos_circonstance, dos_int_nom_voie, dos_sismap_gps_x, dos_r_moy_pai, dos_sismap_gps_y, dos_repe_num, dos_app_num_voie, dos_profil, dos_int_pays, dos_int_itineraire, dos_app_code_postal, dos_voie_id, dos_date_maj, dos_int_compl_etare, dos_iter_num, dos_classe, dos_num, dos_r_corresd, dos_t2_fax, dos_int_compl_quartier, dos_date_creation, dos_num_distant, dos_com_ass, dos_r_correso, dos_app_prenom, dos_r_evs, dos_application_smur, dos_med_lib, dos_niveau_gravite, dos_circ_lib, dos_app_type_voie, dos_quartier_id, dos_google_precision, dos_sismap_precision, dos_int_part_voie, dos_action, dos_app_part_voie, dos_digicode, dos_cd_billet, dos_int_departement, dos_int_compl_voie, dos_app_telealarme, dos_victime_nom, dos_app_dem_lib, dos_app_quartier, dos_cd_certif, dos_int_com, dos_victime_prenom, dos_delest_dosnum, dos_app_nom_voie, dos_med_hos, dos_com_id, dos_etare_id, dos_app_demande, dos_observation, dos_t2_date, dos_gps_x, dos_gps_y, dos_app_com, dos_devenir_lib, dos_app_type_lib, dos_etat, dos_t2_nom_co, dos_app_type, dos_t2_poste, dos_int_code_postal, dos_dos_assist, dos_int_quartier, dos_app_nom, dos_bil_rqs, ns_class, dos_int_num_tel, dos_int_type_lieu, dos_val_ope, dos_provenance_lib, dos_r_servo, dos_t2_tel_co, dos_int_etare, dos_r_servd, dos_int_ty_l_lib, dos_app_num_tel, doss_couplage_type, dos_login_upd, dos_app_etare, dos_int_appart, dos_int_region, dos_cd_ass_prv, dos_adresse_google, dos_bt, dos_sid, dos_r_per_ass, dos_int_compl_commune, dos_int_adresse_libre, dos_val_date, dos_r_etabd, dos_delest_dept, dos_con, dos_int_num_voie, dos_delest_etat, dos_r_etabo]
19:32:19,048 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/sisweb-edi]] (MSC service thread 1-4) No Spring WebApplicationInitializer types detected on classpath
19:32:19,076 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/sisweb-edi]] (MSC service thread 1-4) Initializing Spring root WebApplicationContext
19:32:19,077 INFO  [org.springframework.web.context.ContextLoader] (MSC service thread 1-4) Root WebApplicationContext: initialization started
19:32:19,157 INFO  [org.springframework.web.context.support.AnnotationConfigWebApplicationContext] (MSC service thread 1-4) Refreshing Root WebApplicationContext: startup date [Mon Nov 19 19:32:19 CET 2012]; root of context hierarchy
19:32:19,196 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
19:32:19,199 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
19:32:19,200 INFO  [org.springframework.web.context.support.AnnotationConfigWebApplicationContext] (MSC service thread 1-4) Successfully resolved class for [com.sis.web.edi.config.ServiceEDIConfig]
 19:32:19,260 INFO [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
 19:32:19,260 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
19:32:19,392 INFO  [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor] (MSC service thread 1-4) JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
19:32:19,439 INFO  [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-4) Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@42e28221: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,serviceEDIConfig,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0,dossierService,codificationService,org.springframework.aop.config.internalAutoProxyCreator,proxyTransactionManagementConfiguration,org.springframework.transaction.config.internalTransactionAdvisor,transactionAttributeSource,transactionInterceptor,sisweb-edi,jtaTransactionManager]; root of factory hierarchy
19:32:19,569 INFO  [org.springframework.transaction.jta.JtaTransactionManager] (MSC service thread 1-4) Using JTA UserTransaction: org.jboss.tm.usertx.client.ServerVMClientUserTransaction@7b884e45
19:32:19,570 INFO  [org.springframework.transaction.jta.JtaTransactionManager] (MSC service thread 1-4) Using JTA TransactionManager: com.arjuna.ats.jbossatx.jta.TransactionManagerDelegate@4fdf5bae
19:32:19,574 INFO  [org.springframework.transaction.jta.JtaTransactionManager] (MSC service thread 1-4) Using JTA TransactionSynchronizationRegistry: com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionSynchronizationRegistryImple@5a005478
19:32:19,580 INFO  [org.springframework.web.context.ContextLoader] (MSC service thread 1-4) Root WebApplicationContext: initialization completed in 502 ms
19:32:19,656 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/sisweb-edi]] (MSC service thread 1-4) Initializing Spring FrameworkServlet 'webmvc'
19:32:19,656 INFO  [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-4) FrameworkServlet 'webmvc': initialization started
19:32:19,661 INFO  [org.springframework.web.context.support.AnnotationConfigWebApplicationContext] (MSC service thread 1-4) Refreshing WebApplicationContext for namespace 'webmvc-servlet': startup date [Mon Nov 19 19:32:19 CET 2012]; parent: Root WebApplicationContext
19:32:19,663 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
19:32:19,664 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
19:32:19,665 INFO  [org.springframework.web.context.support.AnnotationConfigWebApplicationContext] (MSC service thread 1-4) Successfully resolved class for [com.sis.web.edi.config.WebEDIAppConfig]
19:32:19,676 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
19:32:19,677 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
19:32:19,743 INFO  [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor] (MSC service thread 1-4) JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
19:32:19,770 INFO  [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-4) Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@29d63b21: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,webEDIAppConfig,org.springframework.context.annotation.ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor#0,dossierController,delegatingWebMvcConfiguration,requestMappingHandlerMapping,viewControllerHandlerMapping,beanNameHandlerMapping,resourceHandlerMapping,defaultServletHandlerMapping,requestMappingHandlerAdapter,mvcConversionService,mvcValidator,httpRequestHandlerAdapter,simpleControllerHandlerAdapter,handlerExceptionResolver,messageSource,propertySourcesPlaceholderConfigurer]; parent: org.springframework.beans.factory.support.DefaultListableBeanFactory@42e28221
19:32:19,883 INFO  [org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping] (MSC service thread 1-4) Mapped "{[/dossier/{id}/context],methods=[GET],params=[],headers=[],consumes=[],produces=[application/json],custom=[]}" onto public com.sis.web.edi.dto.DossierDTO com.sis.web.edi.web.DossierController.getDossier(java.lang.Integer)
19:32:20,304 INFO  [org.springframework.web.servlet.DispatcherServlet] (MSC service thread 1-4) FrameworkServlet 'webmvc': initialization completed in 647 ms
19:32:20,314 INFO  [org.jboss.web] (MSC service thread 1-4) JBAS018210: Registering web context: /sisweb-edi
19:32:20,328 INFO  [org.jboss.as.server] (Controller Boot Thread) JBAS018559: Deployed "sisweb-edi.war"
19:32:20,522 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015874: JBoss AS 7.1.1.Final "Brontes" started in 8582ms - Started 234 of 312 services (76 services are passive or on-demand)
19:32:32,385 ERROR [com.sis.web.edi.web.DossierController] HTTP 500: java.lang.NullPointerException
at com.sis.web.edi.service.DossierService.getDossier(DossierService.java:33) [edi-service-0.1-SNAPSHOT.jar:]
at com.sis.web.edi.web.DossierController.getDossier(DossierController.java:61) [classes:]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_07]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_07]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_07]
at java.lang.reflect.Method.invoke(Method.java:601) [rt.jar:1.7.0_07]
at org.springframework.web.method.support.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:213) [spring-web-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:126) [spring-web-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:96) [spring-webmvc-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:617) [spring-webmvc-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:578) [spring-webmvc-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:80) [spring-webmvc-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923) [spring-webmvc-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852) [spring-webmvc-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882) [spring-webmvc-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:778) [spring-webmvc-3.1.2.RELEASE.jar:3.1.2.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [jboss-servlet-api_3.0_spec-1.0.0.Final.jar:1.0.0.Final]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-servlet-api_3.0_spec-1.0.0.Final.jar:1.0.0.Final]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:]
at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmCloserValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final]
at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:]
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:]
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:]
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:]
at java.lang.Thread.run(Thread.java:722) [rt.jar:1.7.0_07]

Any hint on what could go wrong ?

EDIT :
If I look-up for the EntityManagerFactory and create an EntityManager from it, the EntityManager is correct
EntityManagerFactory emf = new JndiTemplate().lookup(“java:comp/env/persistence/sisweb- edi”, EntityManagerFactory.class);
em = emf.createEntityManager();

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T15:03:43+00:00Added an answer on June 14, 2026 at 3:03 pm

    I was simply missing a spring dependency to inject the EntityManager from the web container EntityManagerFactory implementation.

    I added

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-orm</artifactId>
      <version>${spring.version}</version>
      <scope>runtime</scope>
    </dependency>
    

    And it’s now working
    (I discovered that when implementing my unit tests: Unit Testing proves once again its efficency !)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm parsing an XML file, the creators of it stuck in a bunch social
Let's say I'm outputting a post title and in our database, it's Hello Y&#8217;all
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.