springBoot 結合 Vue專案跨域問題

2021-09-13 17:15:39 字數 643 閱讀 2351

在springboot專案中新增乙個配置類

import org.springframework.context.annotation.bean;

import org.springframework.context.annotation.configuration;

import org.springframework.web.cors.corsconfiguration;

import org.springframework.web.cors.urlbasedcorsconfigurationsource;

import org.springframework.web.filter.corsfilter;

/** * 由於使用vue + springboot開發前後端完全分離的專案,因此需要解決跨域問題。

* 此配置類作用:實現允許跨域功能

*/@configuration

public class corsconfig

@bean

public corsfilter corsfilter()

}

在vue專案中config目錄下的index.js檔案新增以下配置proxytable:

},}

rabbitMQ結合spring boot使用三

在消費端,我們的消費 是執行在 容器之中的 listenercontainer springboot 給我們提供了兩個 容器 messagelistenercontainer和directmessagelistenercontainer在配置檔案中凡是以spring.rabbitmq.listene...

spring boot結合cache快取

spring3.1開始引入了激動人心的快取 cache 技術,其中包含 cacheable cacheput cacheevict主要方法 cacheable 作用和配置方法 引數解釋 example value 快取的名稱,在 spring 配置檔案中定義,必須指定至少乙個 例如 cacheabl...

springboot結合oauth2實現許可權認證

1.什麼是jwt json web token jwt 是為了在網路應用環境間傳遞宣告而執行的一種基於json的開放標準 rfc 7519 該token被設計為緊湊且安全的,特別適用於分布式站點的單點登入 sso 場景。jwt的宣告一般被用來在身份提供者和服務提供者間傳遞被認證的使用者身份資訊,以便...