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

kim.sesame.framework.web.controller.PageController Maven / Gradle / Ivy

There is a newer version: 1.21
Show newest version
package kim.sesame.framework.web.controller;

import kim.sesame.framework.web.config.WebProperties;
import kim.sesame.framework.web.interceptor.annotation.AuthNonCheckRequired;
import kim.sesame.framework.web.interceptor.annotation.LoginNonCheckRequired;
import lombok.extern.apachecommons.CommonsLog;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import java.util.Map;

/**
 * 所有的页面加载
 */
@CommonsLog
@Controller
@RequestMapping("/page")
public class PageController {

    @Resource
    private WebProperties webProperties;

    // 加载界面
//    @AuthNonCheckRequired
//    @LoginNonCheckRequired
    @RequestMapping("/{uriPath}")
    public String index(@PathVariable("uriPath") String uriPath, HttpServletRequest request, ModelMap modelMap) {
        Map mm = request.getParameterMap();
        for (String s : mm.keySet()) {
            modelMap.put(s, request.getParameter(s));
        }
        uriPath = uriPath.replaceAll(webProperties.getPageReplace(), "/");
        return uriPath;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy