2.8-bug
1、Oracle-ORA-12545 Connect failed because target host or object does not exist
????????????oracle本地服務(wù)沒開
2、用戶登錄過濾器(有bug)
3、用session來記錄用戶信息
@RequestMapping("/adminLogin")
@ResponseBody
? protected String userLogin(String username, String password,HttpSession session){
? ? ? ?if (username.equals("admin")&&password.equals("admin")){
? ? ? ? ? ?session.setAttribute("username",username);
? ? ? ? ? ?return "success";
? ? ? ?}else {
? ? ? ? ? ?return "fail";
? ? ? ?}
? ?}
//判斷登錄狀態(tài)
? ? ? ?if(request.getSession().getAttribute("username")!=null){
? ? ? ? ? ?log.info("用戶已登錄,用戶ID為:{}",request.getSession().getAttribute("username"));
? ? ? ? ? ?filterChain.doFilter(request, response);
? ? ? ? ? ?return;
? ? ? ?}
標簽: