Skip to content

Commit

Permalink
MID-4655 fixed encoding issues in login post request
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Sep 6, 2018
1 parent b8cecbf commit 1345e26
Showing 1 changed file with 3 additions and 5 deletions.
Expand Up @@ -41,10 +41,7 @@
import org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration;
import org.springframework.boot.autoconfigure.web.ServerProperties;
import org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration;
import org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration;
import org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration;
import org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryCustomizer;
import org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration;
import org.springframework.boot.autoconfigure.web.servlet.*;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.boot.web.server.ErrorPage;
Expand Down Expand Up @@ -105,7 +102,8 @@
HttpMessageConvertersAutoConfiguration.class,
PropertyPlaceholderAutoConfiguration.class,
SecurityFilterAutoConfiguration.class,
MultipartAutoConfiguration.class
MultipartAutoConfiguration.class,
HttpEncodingAutoConfiguration.class
})
@SpringBootConfiguration
public class MidPointSpringApplication extends SpringBootServletInitializer {
Expand Down

0 comments on commit 1345e26

Please sign in to comment.