diff --git a/src/main/resources/template/controller.tmpl b/src/main/resources/template/controller.tmpl index 12c8a5e..7a6a04c 100644 --- a/src/main/resources/template/controller.tmpl +++ b/src/main/resources/template/controller.tmpl @@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; -import cokr.xit.foundation.web.AbstractController; +import cokr.xit.base.web.ApplicationController; import {entityFullname}; import {queryFullname}; @@ -25,7 +25,7 @@ import {serviceFullname}; * */ @RequestMapping(name = "{entityComment}", value = "/{entityName}") -public class {controllerClass} extends AbstractController { +public class {controllerClass} extends ApplicationController { /**{entityComment} 서비스*/ @Resource(name = "{serviceName}") private {serviceClass} {serviceName};