博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC-@CookieValue
阅读量:6188 次
发布时间:2019-06-21

本文共 1027 字,大约阅读时间需要 3 分钟。

配置承接一二章

index.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%>
Hello World hhhhhhhhh

test.java

package com.hdxy.domian;import java.lang.reflect.Method;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.CookieValue;import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.bind.annotation.RequestParam;/** * @author 流年拓荒者 * 也是四个参数 * required=false :设置此参数是不是必须的。默认为turn * defaultValue="0"默认为0 *name *value */@RequestMapping("springMVC")@Controllerpublic class Test {   final public String SUCCESS="loginSuccess";     @RequestMapping(value="/cookieValue")   public String testCookieValue(@CookieValue("JSESSIONID")String sessionId){       System.out.println("testRequestParam:"+sessionId);       return SUCCESS;   }}

 

转载于:https://www.cnblogs.com/lnthz/p/8024957.html

你可能感兴趣的文章
Ubuntu系统lamp环境下安装wordpress、zencert和mangento程序网站
查看>>
SecureCRT中文显示乱码
查看>>
获取当前粘贴板数据
查看>>
我的友情链接
查看>>
nginx优化
查看>>
Android中onActivityResult/startActivityForResult用法
查看>>
Android四大组件每个组件的作用?它们都可以开启多进程吗?
查看>>
Linux下tomcat的catalina.out文件过大,以及目录更改解决办法
查看>>
CentOS 安装 PPTP ××× 客户端安装脚本
查看>>
关于域名的那些“彩蛋”
查看>>
iOS SDK:预览和打开文档
查看>>
我的友情链接
查看>>
前端资源(19)
查看>>
文本处理三剑客之gawk
查看>>
思科三层+TPAC200+TP AP实现每个SSID独立网段
查看>>
4、elasticsearch安装head插件
查看>>
vs 2017 无法安装任何 nuget package,提示“库没有注册。。。”
查看>>
使用OpenSSL颁发CA证书
查看>>
我的友情链接
查看>>
innodb引擎
查看>>