EJB 3 injection into spring beans
问题 I've made a mavenized web application with spring, spring security... Now, I want to add ejb module for database access, I was looking on the internet but I didn't find something clear because it's my first time with EJB. I want to use something like @EJB in my controller like" @Stateless(name = "CustomerServiceImpl") public class CustomerServiceImpl implements CustomerService @EJB private MyEjb myEjb; and how can I configure it in spring context if there is a tutorial or any other help. It