首頁 > 軟體

java後臺呼叫介面及處理跨域問題的解決

2022-03-23 19:00:10

java呼叫介面及處理跨域

在做系統的時候,有些時候系統A的js程式碼需要呼叫系統B的介面,這就會產生跨域現象,可以通過後臺呼叫處理跨域

問題,這就有點 “代理” 的意思了。

在這記錄一個通用的方法

public String httpPost(String urlStr,Map<String,String> params){
    URL connect;
    StringBuffer data = new StringBuffer();  
    try {  
        connect = new URL(urlStr);  
        HttpURLConnection connection = (HttpURLConnection)connect.openConnection();  
        connection.setRequestMethod("POST");  
        connection.setDoOutput(true); 
        connection.setDoInput(true);
        connection.setUseCaches(false);//post不能使用快取
        connection.setInstanceFollowRedirects(true);
        connection.setRequestProperty("accept", "*/*");
        connection.setRequestProperty("connection", "Keep-Alive");
        connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
        OutputStreamWriter paramout = new OutputStreamWriter(  connection.getOutputStream(),"UTF-8"); 
        String paramsStr = "";   //拼接Post 請求的引數
        for(String param : params.keySet()){
           paramsStr += "&" + param + "=" + params.get(param);
        }  
        if(!paramsStr.isEmpty()){
            paramsStr = paramsStr.substring(1);
        }
        paramout.write(paramsStr);  
        paramout.flush();  
        BufferedReader reader = new BufferedReader(new InputStreamReader(  
                    connection.getInputStream(), "UTF-8"));  
        String line;              
        while ((line = reader.readLine()) != null) {          
            data.append(line);            
        }   
        paramout.close();  
            reader.close();  
        } catch (Exception e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        }  
       return data.toString();
}

呼叫外部介面引起的跨域問題

背景:在我們系統上,從外部參照了一個建議系統,在建議系統當用戶被給予評論或回覆之後,我的訊息中顯示未讀訊息數。

實現的效果:在建議系統中當未讀訊息數大於0時,我們的系統引入建議系統的位置上會出現提示有未讀訊息的紅點。

在建議系統的後臺,我們寫了一個countBlog的介面,用來獲取未讀訊息數量(json格式)

在我們的系統的前臺,引入介面通過返回的未讀訊息數量來控制紅點顯示

執行後報跨域問題的bug:

解決問題

方法一:註解@CrossOrigin

方法二:addCorsMappings設定

@Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")  
                .allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS")
                .allowCredentials(true)
                .maxAge(3600)
                .allowedHeaders("*");  
    }

弊端:使用此方法設定之後再使用自定義攔截器時跨域相關設定就會失效。

原因是請求經過的先後順序問題,當請求到來時會先進入攔截器中,而不是進入Mapping對映中,所以返回的頭資訊中並沒有設定的跨域資訊。瀏覽器就會報跨域異常。

方法三:使用CorsFilter過濾器

private CorsConfiguration corsConfig() {
    CorsConfiguration corsConfiguration = new CorsConfiguration();
    * 請求常用的三種設定,*代表允許所有,當時你也可以自定義屬性(比如header只能帶什麼,只能是post方式等等)
    */
    corsConfiguration.addAllowedOrigin("*");
    corsConfiguration.addAllowedHeader("*");
    corsConfiguration.addAllowedMethod("*");
    corsConfiguration.setAllowCredentials(true);
    corsConfiguration.setMaxAge(3600L);
    return corsConfiguration;
}
@Bean
public CorsFilter corsFilter() {
    UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
    source.registerCorsConfiguration("/**", corsConfig());
    return new CorsFilter(source);
}

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com