springboot2 0 對CORS的支援

2021-08-20 08:30:51 字數 731 閱讀 6182

先自定義乙個配置類

package com.springboot2.thyemleaf.configuration;

import org.springframework.context.annotation.bean;

import org.springframework.context.annotation.configuration;

import org.springframework.web.servlet.config.annotation.corsregistry;

import org.springframework.web.servlet.config.annotation.webmvcconfigurer;

import org.springframework.web.servlet.config.annotation.webmvcconfigureradapter;

/** * created by lpw'asus on 2018/5/29.

* 自定義cors配置類

*/@configuration

public class customcorsconfiguration };}

}

以專案本身埠訪問不收限制。例如本服務為localhost:8888、那麼以localhost:8888開頭的請求路徑不受限制controller,除此之外,http://localhost:9999 只能登陸一部分人。

spring boot 2 0系列筆記 二

之前使用的spring boot 版本一直是1.5.x,spring推出2.0已經有一段時間,個人感覺可以花精力去研究一些變化的新特性,網上的文章很多,我就不一一介紹了,本文主要是用spring boot 2.0構建乙個現在很流行的分布式module專案的demo,位址在本文最後會貼出.下面開始表演...

二 SpringBoot2 0啟動方式

方式一可以將啟動類作為控制器,從而實現啟動並訪問。author 小吉 description springboot2.0啟動方式一 方式二需要在啟動類中加上 componentscan 註解,註解可以配置掃瞄的基礎包,用於指定從哪個包往下掃瞄元件。author 小吉 description spri...

Spring Boot2 0實現微服務呼叫

微服務相互呼叫可避免跨域問題 呼叫兩種方式 1.resttemplate 底層採用httpclient的技術,屬於spring boot,是spring boot 預設採用的rebbon服務呼叫。2.fegin 建議 屬於spring cloud resttemplate 控制器 restcontr...