wellar
wellar
At first I successfully create a user and log the user in. But when I create a new Taco with the design-page and submit the creation I get a Forbidden-Access-error...
When I connect to my spring-boot-application via JConsole as described in Ch. 18, no Actuator-Endpoints are visible. The domain "org.springframework.boot" is missing in the menue. After setting spring.jmx.enabled=true in the...
The sample-code @Override protected void configure(HttpSecurity http) throws Exception { http .authorizeRequests() .antMatchers("/design", "/orders") .hasRole("ROLE_USER") .antMatchers("/”, "/**").permitAll() ; } causes an exception at startup: org.springframework.beans.factory.BeanCreationException: Error creating bean with name...