I have implemented Spring Security to my project, but I am getting status 405 when I try to log in. I have already added csrf token in the form. This is the error I am getting when I send username and password: HTTP Status 405 – Request method ‘POST’ not supported Spring version: 4.0.2.RELEA…
Tag: spring
What causes “java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name ‘command’ available as request attribute”?
This is meant to be an extensive canonical question & answer post for these types of questions. I’m trying to write a Spring MVC web application where users can add movie names to an in-memory collection. It’s configured like so and There’s a single @Controller class in the com.example p…
Spring boot application won’t run when trying to run from the jar file
I have a spring boot application which works fine when run through intellij. But when I run it from the jar I am getting the below exception. Below is my pom file. I tried to create the jar by both and Then I run the jar by java -jar -DParamName=”someParam” What am I doing wrong here? I am new to
How do I filter data in a restful way using Spring?
As the title says. I basically would love to do requests like Is there any ready spring way of achieving such? Something akin to the Page/Pageable mechanism would be great. If there is none I think I could implement it using Hibernate Criteria Queries & Argument Re-solvers. Basically allowing me to write …
Creating strict mock when using @MockBean of spring boot?
I use @MockBean of spring boot (with @RunWith(SpringRunner.class)) and everything was ok so far. However the mock provides default implementation for every method of the mocked class so I cannot check if only those methods were called that I expected to be called, i.e. I would like to create strict mock. Is t…
ConfigurationProperties does not bind properties
I want to bind my application.properties into a class automatically by using @ConfigurationProperties annotation. First, I tried with @Value annotation and was able to inject property values into class variables. However, @ConfigurationProperties did not inject properties into values. my application.propertie…
How to return a set of objects with Spring Boot?
I did a lesson about Spring Boot and it works perfectly. But what if I want to return a set of objects ? I tried doing this but it doesn’t work. How can I do it correctly ? With one object (it works): With many objects (it doesn’t work): Answer If you compare your original method to your newly mad…
Why does Spring MVC respond with a 404 and report “No mapping found for HTTP request with URI […] in DispatcherServlet”?
I’m writing a Spring MVC application deployed on Tomcat. See the following minimal, complete, and verifiable example Where SpringServletConfig is Finally, I have a @Controller in the package com.example.controllers My application’s context name is Example. When I send a request to the application …
Gradle Not Honoring Forced Dependency Version
I am unable to force a version of a dependency using Gradle. My goal is to use version 0.20.0.RELEASE of the Spring HATEOAS library, but despite all my efforts it keeps resolving to 0.19.0.RELEASE. I have attempted a number of strategies, both in isolation and in combination with one another. These strategies…
Handle Security exceptions in Spring Boot Resource Server
How can I get my custom ResponseEntityExceptionHandler or OAuth2ExceptionRenderer to handle Exceptions raised by Spring security on a pure resource server? We implemented a so whenever there is an error on the resource server we want it to answer with The resource server uses the application.properties settin…