Getting Cannot create a session after the response has been committed in Camunda
Solution for Camunda error Cannot create a session after the response has been committed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.springframework.boot.web.servlet.ServletContextInitializer; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
@Configuration | |
public class CsrfAutoConfiguration { | |
private static final String CSRF_PREVENTION_FILTER = "CsrfPreventionFilter"; | |
/** | |
* Overwrite csrf filter from Camunda configured here | |
* org.camunda.bpm.spring.boot.starter.webapp.CamundaBpmWebappInitializer | |
* org.camunda.bpm.spring.boot.starter.webapp.filter.SpringBootCsrfPreventionFilter | |
* Is configured with basically a 'no-op' filter | |
*/ | |
@Bean | |
public ServletContextInitializer csrfOverwrite() { | |
return servletContext -> servletContext.addFilter(CSRF_PREVENTION_FILTER, (request, response, chain) -> chain.doFilter(request, response)); | |
} | |
} |
Comentarios
Publicar un comentario