代码拉取完成,页面将自动刷新
package com.example.learnspring.controller;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
/**
* Created with IntelliJ IDEA.
* Description:
*
* @author: zxj
* @date: 2023-11-07
* @time: 21:35:49
*/
@RequestMapping("/user")
@RestController
public class UserController {
@RequestMapping("login")
public Boolean login(String userName, String password, HttpServletRequest request) {
if (!StringUtils.hasLength(userName)||!StringUtils.hasLength(password)) {
return false;
}
HttpSession session = request.getSession(true);
session.setAttribute("userName",userName);
return true;
}
@RequestMapping("/getLoginUsername")
public String getLoginUsername(HttpServletRequest request) {
HttpSession session = request.getSession(false);
if (session == null) {
return "";
}
return (String) session.getAttribute("userName");
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。