I am trying my hands on Micronaut. One of the things I noticed is that Micronaut doesn't failfast.
For example If I have something like this in my bean
@Value("${my.url}")
private String url;
And if there is no property defined with key my.url, then
- With Springboot, the server wouldn't start.
- With Micronaut server would start. But throws an exception when trying to access that variable.
I would assume it would be better to failfast(as in springboot). So was wondering if this is possible in micronaut as well.