Hi,
If I autowire something in my ParameterResolverFactory, spring-boot (for unknown reasons) ignores the spring.datasource.data property.
@Component
public class MyParameterResolverFactory implements ParameterResolverFactory, ParameterResolver {
@Autowired private CommandGateway commandGateway;
…
When removing the autowiring spring-boot will take into account the spring.datasource.data property.
It took me hours just to find out the autowiring was the problem, but I don’t seem to be able to figure out why this would happen and what I could do to fix it.
Any ideas?
Thanks,
Maarten