EN
Lombok Spring @Autowired annotation in constructor
2
points
Quick solution:
@Service
@RequiredArgsConstructor(onConstructor = @__(@Autowired))
public class UserService {
// ...
}