溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue+springboot跨域session+cookie失效怎么辦

發(fā)布時間:2021-07-12 14:58:15 來源:億速云 閱讀:463 作者:小新 欄目:web開發(fā)

小編給大家分享一下vue+springboot跨域session+cookie失效怎么辦,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

環(huán)境:

前端 vue ip地址:192.168.1.205

后端 springboot2.0 ip地址:192.168.1.217

主要開發(fā)后端。

問題:

首先登陸成功時將用戶存在session中,后續(xù)請求在將用戶從session中取出檢查。后續(xù)請求取出的用戶都為null。

解決過程:

首先發(fā)現(xiàn)sessionID不一致,導(dǎo)致每一次都是新的會話,當(dāng)然不可能存在用戶了。然后發(fā)現(xiàn)cookie瀏覽器不能自動保存,服務(wù)器響應(yīng)set-cookie了

vue+springboot跨域session+cookie失效怎么辦

搜索問題,發(fā)現(xiàn)跨域,服務(wù)器響應(yīng)的setCookie瀏覽器無法保存,而且就算保存了域名不同也不能攜帶。

第一步:

后臺添加過濾器,因為前后端分離,不可能每個方法都寫一遍,所以添加過濾器統(tǒng)一處理。

package com.test.filter;
import javax.servlet.*;
import javax.servlet.annotation.WebFilter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
@WebFilter(urlPatterns = "/*", filterName = "CORSFilter")
public class CORSFilter implements Filter {
 @Override
 public void destroy() {
 }
 /**
  * 此過濾器只是處理跨域問題
  * @param servletRequest
  * @param servletResponse
  * @param chain
  * @throws ServletException
  * @throws IOException
  */
 @Override
 public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain chain) throws ServletException, IOException {
  HttpServletRequest req = (HttpServletRequest) servletRequest;
  HttpServletResponse resp = (HttpServletResponse) servletResponse;
  String origin = req.getHeader("Origin");
  if(origin == null) {
   origin = req.getHeader("Referer");
  }
  resp.setHeader("Access-Control-Allow-Origin", origin);//這里不能寫*,*代表接受所有域名訪問,如寫*則下面一行代碼無效。謹記
  resp.setHeader("Access-Control-Allow-Credentials", "true");//true代表允許攜帶cookie
  chain.doFilter(servletRequest,servletResponse);
 }
 @Override
 public void init(FilterConfig filterConfig) throws ServletException {
 }
}

springboot2.配置過濾器時,啟動類必須加上@ServletComponentScan才會加載過濾器

@SpringBootApplication
@EnableTransactionManagement(order = 10)
@ServletComponentScan
public class Application {
 public static void main(String[] args) {
  SpringApplication.run(Application.class, args);
 }
}

然后前端配置

使用vue.resource發(fā)送請求時配置如下:
main.js中
Vue.http.options.xhr = { withCredentials: true }
使用vue.axios發(fā)送請求時配置如下:
axios.defaults.withCredentials = true;
jquery請求帶上 xhrFields: {withCredentials: true}, crossDomain: true;
$.ajax({
 type: "post",
 url: "",
 xhrFields: {withCredentials: true},
 crossDomain: true,
 data: {username:$("#username").val()},
 dataType: "json",
 success: function(data){ }
});

此時問題已解決。

但我查看請求時,還是沒有帶cookie,太糾結(jié)于這一點了。以至于查看全部cookie時突然明白了。

vue+springboot跨域session+cookie失效怎么辦

沒有帶cookie。

瀏覽器全部cookie

vue+springboot跨域session+cookie失效怎么辦

已經(jīng)有服務(wù)器的cookie了。當(dāng)向服務(wù)器發(fā)送請求時,會攜帶cookie,證明是同一會話。

發(fā)現(xiàn)火狐的請求頭中存在cookie,不知道為什么谷歌的請求頭不顯示,不明白。望解答。

vue+springboot跨域session+cookie失效怎么辦

以上是“vue+springboot跨域session+cookie失效怎么辦”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI