Eclipse throws error message that
"the blank final field may not have been initialized"
even when i have the @RequiredArgsConstructor
set.
@Component
@RequiredArgsConstructor
class DataWriter implements ApplicationRunner{
private final AccountRepository accountRepo;
@Override
public void run(ApplicationArguments args) throws Exception {
}
}
Compilation should not throw error because Lombok should have created the constructors automatically