Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Case Analysis of Spring Cloud Micro Service Security

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces "Spring Cloud micro-service security case analysis". In daily operation, I believe many people have doubts about Spring Cloud micro-service security case analysis. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts of "Spring Cloud micro-service security case analysis". Next, please follow the editor to study!

Using the popular micro-service architecture development, application access security will face more and more complex challenges, especially the three major issues that developers are most concerned about: authentication and authorization, usability and visualization. This course starts with simple API security, transitions to complex micro-service scenarios, solves the pain points of the above three problems, and gives corresponding solutions combined with practice. Help you form a systematic thinking on security issues, and develop a complete set of security programs that can be landed in small and medium-sized companies.

Suitable for the crowd

Hope to form a systematic understanding of micro-service security.

Developers who build a complete landing plan

Technical reserve requirements

The Foundation of Java Web Development

Spring Boot2 Foundation

Basic knowledge of microservices

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 13 March 2014 2:49:05

@ description fetch the publication time of the network

/

Public class FetchPubTime {

/ indicates the continuous 8-digit date in the url

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

/ denotes with-or / separated dates, with years, months and days.

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

/ indicates with-or / separated dates, as long as the year and month

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

Private static Calendar current = Calendar.getInstance ()

/ well-formatted time correction table /

Private static String rightTimeReg = "(\ d {2} ([02468] [048]) | ([13579] [26])) [\ -\ /\ s]? (0? [13578]) | (1 [02])) [\ -\ /\ s]? ((0? [1-9]) | ([1-2] [0-9])) | ((0? [13578])) | (11) [\] -\ /\ s]? (0? [1-9]) | (0? [1-9]) | ([1-2] [0-9]) | (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)

/ / it's not in the link. It matches the text.

If (pubTime = = null)

{

If (urlContent.trim (). Equals ("))

Return extractPageDate (urlContent)

}

Return pubTime

}

/ * * extract the start time from url and return a string in YYYY-MM-DD HH:mm:ss format

@ 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 (1time.length ())

/ / each step cannot exceed the previous time.

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

{

Return time.substring (0pr 4) + "-" + time.substring (4pr 6) + "-" +

Time.substring (6jin8) + "" + "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 (1time.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 (1time.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

}

/ * * fetch the body time from the source code

The date completion code in the positive "table" extraction string in java

15:58:42 on December 19, 2013

Take out the time 2013-12-19 15:48:33 or 2013-12-19 or 2012-3-05

Beihai real estate purchase network http://house.bh.goufang.com/lpfangjia/

@ param text string to be extracted

@ return returns the date

@ author: oschina

@ Createtime: Jan 21, 2013

* /

Public static String extractPageDate (String text) {

Boolean containsHMS = false

String dateStr = text.replaceAll ("ringing n", "")

Try {

List matches = null

Pattern p_detail = Pattern.compile ("(20\ d {2} [- /]\ d {1Magne2} [- /]\ d {1Mague 2}\ d {1Power2}:\ d {1reagen2}:\ d {1reagen2}) | (20\ d {2} years\ d {1pc2} months\ d {1pc2} days)", Pattern.CASE_INSENSITIVE | Pattern.MULTILINE)

/ / if only the year, month, day and day are extracted, then according to the above, if the year, month, day-hour, minute and second is extracted, then according to the following

Pattern p = Pattern.compile ("(20\ d {2} [- /]\ d {1Magne2} [- /]\ d {1Power2}) | (20\ d {2} years\ d {1pc2} months\ d {1pc2} days), 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 0) {

For (int iTuno Bandi)

{

String pubTime = matches.get (I) .toString () .trim ()

/ / take out the first value

PubTime = pubTime.replace ("/", "-"). Replace ("year", "-"). Replace ("month", "-"). Replace ("day", "-")

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

}

}

At this point, the study on "Spring Cloud micro-service security case analysis" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report