My problem - for the study Spring I write a not great application composed of several modules (multimoduls).
module1
src
entity
dao
resource
spring-config.xml ---> This is DataSource, SessionFactory, TransactionManager
module2
src
entity
dao
resource
spring-config.xml ---> This is DataSource, SessionFactory, TransactionManager
service1
src
service_for_module1
resource
spring-config.xml ---> Initialization bean Service1 (used for module1)
service2
src
service_for_module2
resource
spring-config.xml ---> Initialization bean Service2 (used for module2)
web
src
ManagerBeanForJSF
web
pages
WEB-INF
spring
spring-config.xml ---> Import all spring config from modules
I have exception org.hibernate.hql.internal.ast.QuerySyntaxException. When I did not have module2 - all worked successfully. Error associated with duplication of SessionFactory and TransactionManager? Can you give an example of application in Spring composed of several modules. Thanks.
I would suggest you use a maven project and post the poms so we can clearly see the dependencies between the projects.