I am going through some blogs on SpringSource and in one of the blogs, the Sauthor is using @Inject and I suppose he can also use @Autowired.
Here is the piece of code:
@Inject private CustomerOrderService customerOrderService;
I am not sure about the difference between @Inject and @Autowired and would appreciate it if someone explained their difference and which one to use under what situation?