Dave Syer

Results 522 comments of Dave Syer

The sample is for an old unsupported version of Spring Boot. I couldn't run it with Spring Boot 3.3. It isn't anyway referenced in the docs for this project, so...

I'm not sure that was ever intended to work. If you want to propose a change that enables it in a web app, feel free to send a pull request.

Still waiting for a pull request. JSP is an inferior technology and using it undermines Freemarker's advantages (in my opinion), but if anyone needs this feature we are open for...

+1 for the macros in Spring Security. Do you have a JIRA ticket link?

I tried to write a test for what @ThrawnCA was describing. I'm pretty sure I haven't got it because, while I found a bug (see fd83548), it was revealed via...

Done (1.1.3.RELEASE is out). We can keep this issue open in case @ThrawnCA can provide a sample.

This seems entirely expected, but I didn't see the same error when I tried it with an empty project from start.spring.io. Whether it can be fixed or not I don't...

Thanks, that helps. Using `@EnableGuiceModules` is enough, in fact, to make a project fail on AOT processing. I don't know if this is fixable. Spring Guice does some really extremely...

With some changes to spring-guice (replacing constructor-based bean definitions with reflection-free variants) I was able to make your sample compile with AOT. But it will never run in GraalVM native,...

I think I got something working. Try 2.0.3-SNAPSHOT and make sure you add reflection hints like this: ```java class DemoRuntimeHints implements RuntimeHintsRegistrar { @Override public void registerHints(RuntimeHints hints, ClassLoader classLoader)...