Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Class 'org.springframework.boot.autoconfigure.web.HttpMapperProperties' is marked deprecated?

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?

like image 444
tonix Avatar asked Mar 02 '15 19:03

tonix


1 Answers

You can safely ignore this warning as it will be fixed in IDE-1366 for release STS 3.7.0.

like image 143
Driss Amri Avatar answered Sep 19 '22 02:09

Driss Amri