netodevel / cli-spring-boot-scaffold

command line for generate crud and configs for spring boot projects
131 stars 49 forks source link

generate clean class #21

Closed netodevel closed 7 years ago

netodevel commented 7 years ago

Example:

spring scaffold controller -n User

package br.com.example.controller;
import org.springframework.stereotype.Controller;

@Controller
public class UserController {

}