AlexFalappa / nb-springboot

NetBeans IDE plugin supporting programming with Spring Boot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add useful java editor code templates

AlexFalappa opened this issue · comments

Some Java code templates could be added by the plugin.

Ranging from simple ones e.g. gmp expanded to @GetMapping("url")

To complex ones like rtrf expanded to:

@Bean
public RouterFunction<ServerResponse> routes(PostHandler postHandler) {
	return route(GET("/url"), HandlerClass::method);
}