Posts by Robson Kades • 1 point
3 posts
-
0
votes3
answers867
viewsA: Does not parse the bootstrap datepicker for dd/mm/yyyy - 400 Bad Request (POST)
I use this way, in my template on top of the attribute add this annotation. @DateTimeFormat(pattern="dd/MM/yyyy") In the main class @Bean public LocaleResolver localeResolver() { return new…
-
-2
votes3
answers808
viewsA: Spring MVC Enum
You can use it like this too @Enumerated(EnumType.STRING)
-
0
votes1
answer728
viewsA: Spring MVC annotations not working on Maven
You need to create the Spring configuration class @Configuration @ComponentScan(basePackageClasses = { Controle.class }) @EnableWebMvc public class WebConfig extends WebMvcConfigurerAdapter…