Libing Chen

Results 186 comments of Libing Chen

@jvmlet yes, it works with 4.4.8-SNAPSHOT. 👍 Now I use native-image-agent to get reflect and resource config for grpc-spring-boot-starter, if possible, could you add src/main/resources/META-INF/native-image/io.github.lognet/grpc-spring-boot-starter/reflect-config.json and src/main/resources/META-INF/native-image/io.github.lognet/grpc-spring-boot-starter/resource-config.json files for native-image...

From https://www.graalvm.org/reference-manual/native-image/BuildConfiguration/ you don't need to import `org.springframework.experimental:spring-native` and add native-image support, and it's good choice to add json config file because it works well with normal Java Apps and...

> @linux-china , does it work for you ? It works for me. But I should still add some reflect config for gRPC, and reflect config example is https://github.com/linux-china/grpc-native-demo/blob/master/src/main/resources/META-INF/native-image/reflect-config.json If...

Hi Samie, yes, now I use server.port for end user through Nginx, and management.port for admin because of security protection, and I don't want the end user to access the...

I created a demo at https://github.com/linux-china/vaadin-demo please take a look at AdminVaadinUI class, and I really want to use Vaadin UI through management port and enjoy some admin operations.

@elmot yes, it works. Could your guys make it simple? Such as a new annotation or implement VaadinMvcEndpoint, scan these UI Components and make them automatically wired. :)

any idea to integration https://github.com/spring-cloud/spring-cloud-netflix/blob/master/spring-cloud-netflix-core/src/main/java/org/springframework/cloud/netflix/endpoint/ServletWrappingEndpoint.java to make UI on management port?

Now I use following code :) ``` @Controller @Qualifier(NAME) public class Greeter implements Function { public final static String NAME = "greeter"; @Override @MessageMapping(NAME) public Mono apply(String s) { return...

Now I use maven shade plugin to add some jars, and I could add /BOOT-INF/lib/ into classloader by thin launcher? ``` org.apache.maven.plugins maven-dependency-plugin copy-dependencies prepare-package copy-dependencies commons-lang3 ${project.build.directory}/classes/BOOT-INF/lib/ false false...