千家信息网

Controller怎么配置

发表于:2025-01-17 作者:千家信息网编辑
千家信息网最后更新 2025年01月17日,本篇内容介绍了"Controller怎么配置"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!Contr
千家信息网最后更新 2025年01月17日Controller怎么配置

本篇内容介绍了"Controller怎么配置"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

Controller是MVC中的控制部分,主要的功能是接收客户端提交的请求,然后调用Service的功能及获取数据,最后返回View(视图,即JSP或freemarker页面)。

在Jspxcms中,Controller分为前台和后台。前台是普通用户浏览的页面,使用freemarker作为视图,通常不需要登录,比如网站首页、栏目页、专题页、搜索页等;后台一般为管理功能,使用JSP作为视图,需要管理员登录后台并且有相应权限,才能访问。

后台Controller配置

/src/main/resources/conf/plugin/plug/backend.xml

符合classpath:conf/**/backend*.xml这个规则的文件会加载为后台Controller的配置文件。

    

这个配置会自动加载com.jspxcms.plug.web.back包下所有带有Controller或ControllerAdvice注解的类。

后台Controller返回JSP页面,JSP路径的前后缀分别为/WEB-INF/views/、.jsp,相应的配置文件是/src/main/resources/application.properties。

# 后台JSP地址前缀spring.mvc.view.prefix=/WEB-INF/views/# 后台JSP地址后缀spring.mvc.view.suffix=.jsp

后台Controller类

后台访问地址以/cmscp为根路径,@RequestMapping("/plug/resume")和@RequestMapping("list.do")配置的最终访问地址为/cmscp/plug/resume/list.do。

/cmscp路径由com.jspxcms.core.Application中的new ServletRegistrationBean(backendDispatcherServlet(), "/cmscp/*");代码设定。

后台Controller返回JSP页面,如plug/resume/resume_list,加上前后缀,实际文件地址为/WEB-INF/views/plug/resume/resume_list.jsp

package com.jspxcms.plug.web.back;@Controller@RequestMapping("/plug/resume")public class ResumeController {    @RequiresPermissions("plug:resume:list")    @RequestMapping("list.do")    public String list(...) {        ...        return "plug/resume/resume_list";    }    @RequiresPermissions("plug:resume:create")    @RequestMapping("create.do")    public String create(...) {        ...        return "plug/resume/resume_form";    }    ...}

前台Controller配置

com.jspxcms.plug.ContextConfig中的@ComponentScan({"com.jspxcms.plug.web.fore" })会加载com.jspxcms.plug.web.fore包中的@Controller类。

前台Controller返回的视图是FreeMarker,有关FreeMarker的配置在src/main/resources/context.xml。

其中templateLoaderPath是模板存储路径,也就是模板前缀,默认为/template。

                      square_bracket      ${freemarkerConfig.template_update_delay}      UTF-8      UTF-8      false      zh_CN      true,false      yyyy-MM-dd'T'HH:mm:ss      yyyy-MM-dd      HH:mm:ss      0.###      true      /spring.ftl as s      

前台Controller类

前台访问地址直接以网站根路径为相对路径,@RequestMapping(value = "/resume")配置的访问地址就为/resume。

前台返回的FreeMarker模板路径,一般返回当前站点的模板路径,如/1/default/plug_resume.html,加上模板前缀,实际地址是/template/1/default/plug_resume.html;
也可以是任意值,如:/abc/def.html,加上模板前缀,实际地址为/template/abc/def.html。

package com.jspxcms.plug.web.fore;@Controllerpublic class ResumeController {    public static final String TEMPLATE = "plug_resume.html";    @RequestMapping(value = "/resume")    public String form(HttpServletRequest request, org.springframework.ui.Model modelMap) {    ...    // 将通用对象放到modelMap里,如ctx dy user site global等        Map data = modelMap.asMap();        ForeContext.setData(data, request);    // 获得当前站点对象        Site site = Context.getCurrentSite();    // 返回当前站点模板路径。如:/1/default/plug_resume.html。加上模板前缀,实际地址是 /template/1/default/plug_resume.html        return site.getTemplate(TEMPLATE);    }    @RequestMapping(value = "/resume", method = RequestMethod.POST)    public String submit(...) {    ...    }}

"Controller怎么配置"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!

0