I have created a sample Spring Boot 1.2.2 project using the Spring Initializr (http://start.spring.io/) and inside the auto-created application class:
package demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
I get this warning:
Class 'org.springframework.boot.autoconfigure.web.HttpMapperProperties' is marked deprecated
Why? How to get rid of it?
You can safely ignore this warning as it will be fixed in IDE-1366 for release STS 3.7.0.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With