Furer Alexander
Furer Alexander
@dalegaspi https://github.com/salesforce/reactive-grpc
https://github.com/salesforce/reactive-grpc/tree/master/demos/hello-world. Have a look at protoc plugin this project uses in pom file. The server side implementation is not tied to any specific helper, including this starter, as long as...
https://github.com/spring-projects-experimental/spring-native/issues/710
@linux-china , do you experience any issue when running your app as `spring-native` ?
@linux-china , can you please try with `4.4.8-SNAPSHOT` ? BTW, replacing `@ConditionalOnExpression("#{environment.getProperty('grpc.inProcessServerName','')!=''}")` with `@ConditionalOnProperty(name = "grpc.inProcessServerName", havingValue = "")` will brake backward compatibility for users who choose to call the...
Sure, I'll add them. But I wonder how all original spring boot starters, like web and jpa, work with native app without these files? This is what I asked in...
Yes, I will add it, just want to know how standard spring boot starters support spring native... They don't have such files in META-INF directory...
Thanks @sdeleuze, Can you please point me to json files in standard jpa/web spring boot starters? Or any other sources in these repositories that make jpa and web starters supported...
So as far as I understand, they are generated and packaged in distributable jar, can you please confirm it @sdeleuze? I also don't see spring native dependencies in these projects...
@linux-china , I've created branch [here](https://github.com/LogNet/grpc-spring-boot-starter/tree/native-image) The build fails with ``` Execution failed for task ':grpc-spring-boot-starter-native-demo:generateAot'. > Unable to find class file for com/ecwid/consul/v1/agent/model/NewService$Check ``` Can you please have a...