Hi, guys! I have an application architecture with CXF + Spring + JPA + Hibernate. My goal is having transactional services with the @Transactional annotation. Although, when the application starts i get an parsing error. The relevant configuration includes this:
<bean id="transactionManager" class=" org.springframework.orm.jpa.JpaTransactionManager" /> <tx:annotation-driven /> <bean id="myServiceImpl" class="com.xx.MyServiceImpl" /> <jaxws:endpoint id="myServiceEndpoint" implementor="#myServiceImpl" address="/MyService" /> @Transactional public interface MyService() { } Any ideas? Thanks a lot