0 / 60 seg.

What effect does private static have on the object service below?

@SpringBootApplication
public class Question14 {
    @Autowired
    private static Service service;
    public static void main(String[] args) {
        SpringApplication.run(Question14.class, args);
    }
}
@Component
class Service {}