博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
Android中常用单位dp,px,sp之间的相互转换
查看>>
C++线性方程求解
查看>>
nginx负载均衡的实现
查看>>
Oracle PL/SQL之LOOP循环控制语句
查看>>
Webkit内核的浏览器中用CSS3+jQuery实现iphone滑动解锁效果(译)
查看>>
Can't create handler inside thread that has not called Looper.prepare()
查看>>
MDaemon运行六年方法
查看>>
SQL SERVER 存储过程应用
查看>>
Locale ID (LCID) Chart 区域设置ID
查看>>
Microsoft Windows Scripting Self-Paced Learning Guide
查看>>
Windows Phone Background Agent杂谈
查看>>
AJAX POST&跨域 解决方案 - CORS(转载)
查看>>
Vim中的swp文件
查看>>
[iphone-objective C]去掉一段String中的HTML标签
查看>>
NSArray与NSMutableArray的区别
查看>>
Firefox 9正式发布
查看>>
ADO.NET简介
查看>>
[转]免费开源.net网上商城
查看>>
Android so减包相关
查看>>
linux shell获取用户输入
查看>>