All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.controller.ej Maven / Gradle / Ivy

The newest version!
package #(package.Controller);

import org.springframework.web.bind.annotation.RequestMapping;
#if(restControllerStyle)
import org.springframework.web.bind.annotation.RestController;
#else
import org.springframework.stereotype.Controller;
#end
#if(superControllerClassPackage)
import #(superControllerClassPackage);
#end

/**
 * 

* #(table.comment ??) 前端控制器 *

* * @author #(author) * @since #(date) */ #if(restControllerStyle) @RestController #else @Controller #end @RequestMapping("#if(package.ModuleName)/#(package.ModuleName)#end/#if(controllerMappingHyphenStyle)#(controllerMappingHyphen)#else#(table.entityPath)#end") #if(kotlin) class #(table.controllerName)#if(superControllerClass) : #(superControllerClass)()#end #else #if(superControllerClass) public class #(table.controllerName) extends #(superControllerClass) { #else public class #(table.controllerName) { #end } #end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy