Matt Raible

Results 154 issues of Matt Raible

Exception on startup is as follows: ``` 2018-02-08 12:13:09.988 ERROR 57655 --- [ main] o.s.boot.SpringApplication : Application startup failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in class path...

I'm using the Stormpath Angular SDK with Spring Boot Stormpath Starter version 2.0.0-okta-rc1. If I enter a bad password, the error message is "Invalid grant" rather than "Invalid username or...

When I try to register a new user using 2.0.0-okta-rc1, I get an error. ``` Property name 'stormpathMigrationRecoveryAnswer' is not defined in profile ``` ![stormpathmigrationrecoveryanswer](https://cloud.githubusercontent.com/assets/17892/26685478/81033a2e-46a7-11e7-93c5-449fb997bd16.png) I did not migrate a...

With our 1.3.x release and Spring Security 1.4.2, you still need a `WebSecurityConfigurerAdapter` like the following. ```java import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; @Configuration public class SecurityConfiguration extends WebSecurityConfigurerAdapter {...

old-backlog

When an existing cache configuration exists and Stormpath caches are not configured, startup fails with: ``` Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'stormpathApplication' defined in class path resource...

http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html#boot-features-external-config-typesafe-configuration-properties Doing this would allow others to inject our configuration into a Spring-managed class, rather than relying on individual `Value` annotations. Those would still work of course, but `ConfigurationProperties` is...

enhancement

The [Node.js docs](https://docs.stormpath.com/nodejs/express/latest/configuration.html) use: ``` export STORMPATH_CLIENT_APIKEY_ID=YOUR_ID_HERE export STORMPATH_CLIENT_APIKEY_SECRET=YOUR_SECRET_HERE export STORMPATH_APPLICATION_HREF=YOUR_APP_HREF ``` While we support: ``` STORMPATH_API_KEY_ID STORMPATH_API_KEY_SECRET ``` We should support `STORMPATH_CLIENT_APIKEY_ID` according to https://github.com/stormpath/stormpath-sdk-spec/blob/master/specifications/config.md I think this needs...

### Describe the problem you'd like to have solved JHipster is [adding Auth0 support in its next release](https://github.com/jhipster/jhipster.github.io/pull/1151). It'd be cool if the steps to configure a JHipster app on...

feature request