A colleague of mine found the solution (though not an explanation): there is a bug in the pointcut expression, it should read
pointcut="execution(* com.mycompany..*(..))"
Mysetup is now working...
Type: Posts; User: Matthias73; Keyword(s):
A colleague of mine found the solution (though not an explanation): there is a bug in the pointcut expression, it should read
pointcut="execution(* com.mycompany..*(..))"
Mysetup is now working...
Ok, here's my spring config:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
Hello Enrico,
thank you for setting me on the right track!
Beside a mistake of my own (@Autowired fields must have an interface type, I know...), here's what I had to add to my configuration:
...
Hello,
I'm using an annotation-based Spring configuration - my bean classes are annotated with @Service and @Repository and use @Autowired on their constructors, and in my XML configuration I only...