真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringCloud微服務(wù)安全實(shí)例分析

這篇文章主要介紹“Spring Cloud微服務(wù)安全實(shí)例分析”,在日常操作中,相信很多人在Spring Cloud微服務(wù)安全實(shí)例分析問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Spring Cloud微服務(wù)安全實(shí)例分析”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

目前成都創(chuàng)新互聯(lián)已為近千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)頁(yè)空間、綿陽(yáng)服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、潢川網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。

采用流行的微服務(wù)架構(gòu)開(kāi)發(fā),應(yīng)用程序訪問(wèn)安全將會(huì)面臨更多更復(fù)雜的挑戰(zhàn),尤其是開(kāi)發(fā)者最關(guān)心的三大問(wèn)題:認(rèn)證授權(quán)、可用性、可視化。本課程從簡(jiǎn)單的API安全入手,過(guò)渡到復(fù)雜的微服務(wù)場(chǎng)景,解決上述三大問(wèn)題痛點(diǎn),并結(jié)合實(shí)際給出相應(yīng)解決方案。幫助大家形成對(duì)安全問(wèn)題的系統(tǒng)性思考,實(shí)戰(zhàn)開(kāi)發(fā)一套可在中小公司落地的完整的安全方案。

適合人群

希望對(duì)微服務(wù)安全形成系統(tǒng)認(rèn)識(shí)

搭建一套完整落地方案的開(kāi)發(fā)者

技術(shù)儲(chǔ)備要求

Java Web開(kāi)發(fā)基礎(chǔ)

Spring Boot2基礎(chǔ)

微服務(wù)基礎(chǔ)知識(shí)

package whu.extract.pubtime.core;

import java.util.ArrayList;

import java.util.Calendar;

import java.util.Collections;

import java.util.List;

import java.util.regex.Matcher;

import java.util.regex.Pattern;

import whu.utils.TimeUtil;

/**

Created On 2014年3月13日 下午2:49:05

@description 獲取網(wǎng)頁(yè)的發(fā)佈時(shí)間

/

public class FetchPubTime {

/ 表示url中連續(xù)的8位日期,

private static String url_regwhole= "([-|/|]{1}20\d{6})";

/ 表示 用-或者/隔開(kāi)的日期,有年月日的

private static String url_reg_sepymd = "([-|/|]{1}20\d{2}[-|/|]{1}\d{1,2}[-|/|]{1}\d{1,2})";

/ 表示 用-或者/隔開(kāi)的日期,只要年和月份的

private static String url_reg_sepym = "([-|/|]{1}20\d{2}[-|/|_]{1}\d{1,2})";

private static Calendar current = Calendar.getInstance();

/ 格式正確的時(shí)間正則表達(dá)式/

private static String rightTimeReg = "^((\d{2}(([02468][048])|([13579][26]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|([1-2][0-9])))))|(\d{2}(([02468][1235679])|([13579][01345789]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(\s(((0?[0-9])|([1-2][0-3]))\:([0-5]?[0-9])((\s)|(\:([0-5]?[0-9])))))?$";

/**

@param url

@param urlContent

@return

*/

public static String getPubTimeVarious(String url,String urlContent) {

String pubTime = getPubTimeFromUrl(url);

//鏈接里面沒(méi)有,匹配文本中的

if(pubTime == null)

{

if(urlContent!=null&&!urlContent.trim().equals(""))

return extractPageDate(urlContent);

}

return pubTime;

}

/**從url里面抽取動(dòng)身佈時(shí)間,返回YYYY-MM-DD HH:mm:ss格式的字符串

@param url

@return

*/

public static String getPubTimeFromUrl(String url)

{

Pattern p_whole = Pattern.compile(url_reg_whole);

Matcher m_whole = p_whole.matcher(url);

if(m_whole.find(0)&&m_whole.groupCount()>0)

{

String time = m_whole.group(0);

time = time.substring(1,time.length());

//每一步都不可以超出當(dāng)前時(shí)間

if(current.compareTo(TimeUtil.strToCalendar(time, "yyyyMMdd"))>=0)

{

return time.substring(0,4)+"-"+time.substring(4,6)+"-"+

time.substring(6,8)+" "+"00:00:00";

}

}

p_whole = null;

m_whole = null;

Pattern p_sep = Pattern.compile(url_reg_sep_ymd);

Matcher m_sep = p_sep.matcher(url);

if(m_sep.find(0)&&m_sep.groupCount()>0)

{

String time = msep.group(0);

time = time.substring(1,time.length());

String[] seg = time.split("[-|/|]{1}");

Calendar theTime = Calendar.getInstance();

theTime.set(Calendar.YEAR,Integer.parseInt(seg[0]));

theTime.set(Calendar.MONTH, Integer.parseInt(seg[1]));

theTime.set(Calendar.DAY_OF_MONTH, Integer.parseInt(seg[2]));

if(current.compareTo(theTime)>=0)

{

return seg[0]+"-"+seg[1]+"-"+seg[2]+" "+"00:00:00";

}

}

p_sep = null;

m_sep = null;

Pattern p_sep_ym = Pattern.compile(url_reg_sep_ym);

Matcher m_sep_ym = p_sep_ym.matcher(url);

if(m_sep_ym.find(0)&&m_sep_ym.groupCount()>0)

{

String time = m_sepym.group(0);

time = time.substring(1,time.length());

Calendar theTime = Calendar.getInstance();

String[] seg = time.split("[-|/|]{1}");

theTime.set(Calendar.YEAR,Integer.parseInt(seg[0]));

theTime.set(Calendar.MONTH, Integer.parseInt(seg[1]));

theTime.set(Calendar.DAY_OF_MONTH, 1);

if(current.compareTo(theTime)>=0)

{

return seg[0]+"-"+seg[1]+"-"+"01"+" "+"00:00:00";

}

}

return null;

}

/** 從網(wǎng)頁(yè)源碼中取動(dòng)身佈時(shí)間

java中正則表達(dá)式提取字符串中日期完成代碼

2013年12月19日15:58:42

讀取出2013-12-19 15:48:33或者2013-12-19或者2012/3/05方式的時(shí)間

北海購(gòu)房網(wǎng) http://house.bh.goufang.com/lpfangjia/

@param text 待提取的字符串

@return 返回日期

@author: oschina

@Createtime: Jan 21, 2013

*/

public static String extractPageDate(String text) {

boolean containsHMS =false;

String dateStr = text.replaceAll("r?n", " ");

try {

List matches = null;

Pattern p_detail = Pattern.compile("(20\d{2}[-/]\d{1,2}[-/]\d{1,2} \d{1,2}:\d{1,2}:\d{1,2})|(20\d{2}年\d{1,2}月\d{1,2}日)", Pattern.CASE_INSENSITIVE|Pattern.MULTILINE);

//假如是僅僅抽取年月日,則依照上面的,假如是抽取年月日-時(shí)分秒,則依照下面的

Pattern p = Pattern.compile("(20\d{2}[-/]\d{1,2}[-/]\d{1,2})|(20\d{2}年\d{1,2}月\d{1,2}日)", Pattern.CASE_INSENSITIVE|Pattern.MULTILINE);

//Matcher matcher = p.matcher(dateStr);

Matcher matcher_detail = p_detail.matcher(dateStr);

if(!(matcher_detail.find(0) && matcher_detail.groupCount() >= 1))

{

matcher_detail = p.matcher(dateStr);

containsHMS = true;

}else

matcher_detail = p_detail.matcher(dateStr);

if (matcher_detail.find() && matcher_detail.groupCount() >= 1) {

matches = new ArrayList();

for (int i = 1; i <= matcher_detail.groupCount(); i++) {

String temp = matcher_detail.group(i);

matches.add(temp);

}

} else {

matches = Collections.EMPTY_LIST;

}

if (matches.size() > 0) {

for(int i=0;i

{

String pubTime = matches.get(i).toString().trim();

//取出第一個(gè)值

pubTime = pubTime.replace("/", "-").replace("年", "-").replace("月", "-").replace("日", "-");

if(current.compareTo(TimeUtil.strToCalendar(pubTime, "yyyy-MM-dd"))>=0)

{

if(containsHMS)

pubTime+=" "+"00:00:00";

if(pubTime.matches(rightTimeReg))

{

return pubTime;

}

}

}

} else {

return null;

}

} catch (Exception e) {

return null;

}

return null;

}

}

到此,關(guān)于“Spring Cloud微服務(wù)安全實(shí)例分析”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!


當(dāng)前題目:SpringCloud微服務(wù)安全實(shí)例分析
路徑分享:http://weahome.cn/article/gjsgio.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部