11

我正在寻找一种方法来管理路由在我的 WebApp 上的使用。基本上,我有三个地方可以共享一个路由器模式。我可以通过表达语言将此模式发送给我的观点。

@Controller
public class LoginRuasController
{
    @RequestMapping("/system/index")
    public String logout(ModelMap model, HttpSession session)
    {
        return "system/index";
    }   

    @RequestMapping("/system/logout")
    public String logout(ModelMap model, HttpSession session)
    {
        session.setAttribute("xxx", null);
        return "redirect:/system/login";
    }
}

模式:

/system/index
system/index
redirect:/system/login

意见:

<a href="#{Routes.newuser}">Triple X</a>

最初,RequestMapping 请求一个常量值,因此这会产生一个问题,以实现具有静态返回的 Route 类。有没有可用的解决方案?

4

2 回答 2

10

我找到了一个解决方案,如下:

1) 我创建了一个 Routes 类

public class Routes {

    private static HashMap<String, String> routes;

    public static final String host = "/mywebapp";
    public static final String home = "/home";
    public static final String login = "/login";
    public static final String logout = "/logout";

    private static void setRoutes()
    {       
        if(routes == null)
        {
            routes = new HashMap<String, String>();

            routes.put("host", host);
            routes.put("home", host + home);
            routes.put("entrar", host + entrar);
            routes.put("sair", host + sair);
        }
    }   

    public static HashMap<String, String> getRoutes()
    {
        setRoutes();

        return routes;
    }

    public static String getRoute(String destin)
    {
        setRoutes();

        return routes.get(destin);
    }

}

2)我在我的控制器上使用...现在可以设置一个 RequestMapping

@Controller
public class HomeController extends AbstractController {

    @RequestMapping(Routes.home)
    public String home(ModelMap model)
    {
        preRender(model);       
        return Routes.home;
    }

}

3)我设置路线用于我的观点

public abstract class AbstractController {

    protected void preRender(ModelMap model) {
        model.addAttribute("routes", Routes.getRoutes()); 
    }

}

4) 现在可以在视图上使用

<body>
    <p>Mary is singing.</p>
    <p><a href="${routes.home}">Home</a></p>
</body>
于 2013-01-17T12:55:32.887 回答
8

查看 GitHub 上的 SpringMVC 路由器项目:

https://github.com/resthub/springmvc-router

它是 SpringMVC 的 play 路由文件的实现

于 2013-10-23T01:17:02.730 回答