getSession(true)和getSession(false)的区别
request.getSession(true);如果不存在会话就创建一个新的会话(如果想把数据写入到会话中)
request.getSession(false):如果不存在会话就返回null(如果只是想读取会话中的数据)
getSession(true)和getSession(false)的区别
request.getSession(true);如果不存在会话就创建一个新的会话(如果想把数据写入到会话中)
request.getSession(false):如果不存在会话就返回null(如果只是想读取会话中的数据)