thymeleaf 获取cookie

来源:互联网 发布:造价软件排名 编辑:程序博客网 时间:2024/05/01 08:58
<!DOCTYPE html><html lang="zh" xmlns:th="http://www.thymeleaf.org"><head>    <meta charset="UTF-8">    <title>Title</title>
    <link id="easyuiTheme" rel="stylesheet" th:each="cookie :${#httpServletRequest.getCookies()}"      th:href="${cookie.getName().equals('easyuiThemeName')} ?      @{/plugin/easyui/themes/{theme}/easyui.css(theme=${cookie.getValue()})}:      @{/plugin/easyui/themes/default/easyui.css}"/>
</head>
<body>
    <span th:each="cookie :${#httpServletRequest.getCookies()}" 
th:if="${cookie.getName().equals('easyuiThemeName')}" 
th:text="${cookie.getValue()}"></span></body></html>
原创粉丝点击