Josh Long
Josh Long
Aloha! Things are much improved! But not 100% there. Given the following program: ```package com.example.gatewaynative; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.gateway.route.RouteLocator; import org.springframework.cloud.gateway.route.builder.RouteLocatorBuilder; import org.springframework.context.annotation.Bean; import org.springframework.nativex.hint.AccessBits; import org.springframework.nativex.hint.TypeHint; @SpringBootApplication...
OK, a bit of a sledgehammer approach, but, adding all of the following seems to allow me a lot of forward progress. These are all subclasses of `Configurable.class` and the...
Alrght, I've gotten something more future-proof working here: https://github.com/joshlong/gateway-hints/blob/main/gateway-hints/src/main/java/gateway/GatewayHints.java Spring Cloud Gateway makes use of classes of the form `FooFactory`, and those in turn have `.class` references to nested `FooFactory.Config`...
I haven't tried it with every possible filter (as some of htem require other libraries on the classpath, like resilience4j and spring security), but let's cross that bridge later.
Hi! I would love to see something like this in the SCC. There was a really good comment on the YouTube video for my Spring Tip by a Ashok Koyi,...
Revisiting this a bit more - it would also be useful to have some sort of hybrid mechanism to inline local dependencies where the user has artifacts that are in...
here's the exception I get when trying to use the following record: ``` @Document record Person(@Id @Indexed String id, String name) { } ``` ```shell /Users/jlong/.sdkman/candidates/java/17.0.1-open/bin/java -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote...
Hi - let me try that out now. I don't think it'll make a difference as I've tried using `@ResourceHint` before and I was told it has more to do...
Sorry for the late update: yeeah, this doesn't work. we need to not be doing the scanning, i think. pading @aclement who might know more about why that is, exactly
I see that since this issue was filed, the autoconfiguration has improved to support conditional registration of the `GraphQlSource` and to be decoupled from the registration of the `GraphQlProperties`. I've...