SonarQube shows a security error in Spring Framework controllers and in Spring Framework Application main class
问题 Should I take this security warning seriously, this warning shows up in every controller https://rules.sonarsource.com/java/RSPEC-4529 when I declare a controller like this @RequestMapping(path = "/profile", method = RequestMethod.GET) public UserProfile getUserProfile(String name) { ... } and this warning shows up in the application class https://rules.sonarsource.com/java/RSPEC-4823 @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication