Quantcast
Channel: SpringBoot application doesn't autowire field - Stack Overflow
Viewing all articles
Browse latest Browse all 7

Answer by rascio for SpringBoot application doesn't autowire field

$
0
0

Spring is not so smart :)

You should annotate your bean like:

@RequiredArgsConstructor
public class ServiceAImpl {
     @Value("${fieldA}")
     private final String something;
...

But I'm not sure it will work with the @RequiredFieldsConstructor, it would be simpler for you write down the constructor annotated with @Autowired and using the @Value annotation for the String parameter:

@Autowired
public ServiceAImpl(@Value("${aProp}") String string) {

Viewing all articles
Browse latest Browse all 7

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>