Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyang
sts网站
Commits
079b7eee
Commit
079b7eee
authored
Mar 01, 2025
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化代码
parent
ba240107
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
13 deletions
+31
-13
HttpUtils.java
.../src/main/java/com/ruoyi/common/utils/http/HttpUtils.java
+21
-2
ResourcesConfig.java
...main/java/com/ruoyi/framework/config/ResourcesConfig.java
+0
-1
TokenService.java
...in/java/com/ruoyi/framework/web/service/TokenService.java
+9
-9
SysMenuServiceImpl.java
...ava/com/ruoyi/system/service/impl/SysMenuServiceImpl.java
+1
-1
No files found.
ruoyi-common/src/main/java/com/ruoyi/common/utils/http/HttpUtils.java
View file @
079b7eee
...
...
@@ -21,6 +21,7 @@ import org.slf4j.Logger;
import
org.slf4j.LoggerFactory
;
import
com.ruoyi.common.constant.Constants
;
import
com.ruoyi.common.utils.StringUtils
;
import
org.springframework.http.MediaType
;
/**
* 通用http发送方法
...
...
@@ -125,6 +126,19 @@ public class HttpUtils
* @return 所代表远程资源的响应结果
*/
public
static
String
sendPost
(
String
url
,
String
param
)
{
return
sendPost
(
url
,
param
,
MediaType
.
APPLICATION_FORM_URLENCODED_VALUE
);
}
/**
* 向指定 URL 发送POST方法的请求
*
* @param url 发送请求的 URL
* @param param 请求参数
* @param contentType 内容类型
* @return 所代表远程资源的响应结果
*/
public
static
String
sendPost
(
String
url
,
String
param
,
String
contentType
)
{
PrintWriter
out
=
null
;
BufferedReader
in
=
null
;
...
...
@@ -138,7 +152,7 @@ public class HttpUtils
conn
.
setRequestProperty
(
"connection"
,
"Keep-Alive"
);
conn
.
setRequestProperty
(
"user-agent"
,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
);
conn
.
setRequestProperty
(
"Accept-Charset"
,
"utf-8"
);
conn
.
setRequestProperty
(
"
contentType"
,
"utf-8"
);
conn
.
setRequestProperty
(
"
Content-Type"
,
contentType
);
conn
.
setDoOutput
(
true
);
conn
.
setDoInput
(
true
);
out
=
new
PrintWriter
(
conn
.
getOutputStream
());
...
...
@@ -190,6 +204,11 @@ public class HttpUtils
}
public
static
String
sendSSLPost
(
String
url
,
String
param
)
{
return
sendSSLPost
(
url
,
param
,
MediaType
.
APPLICATION_FORM_URLENCODED_VALUE
);
}
public
static
String
sendSSLPost
(
String
url
,
String
param
,
String
contentType
)
{
StringBuilder
result
=
new
StringBuilder
();
String
urlNameString
=
url
+
"?"
+
param
;
...
...
@@ -204,7 +223,7 @@ public class HttpUtils
conn
.
setRequestProperty
(
"connection"
,
"Keep-Alive"
);
conn
.
setRequestProperty
(
"user-agent"
,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
);
conn
.
setRequestProperty
(
"Accept-Charset"
,
"utf-8"
);
conn
.
setRequestProperty
(
"
contentType"
,
"utf-8"
);
conn
.
setRequestProperty
(
"
Content-Type"
,
contentType
);
conn
.
setDoOutput
(
true
);
conn
.
setDoInput
(
true
);
...
...
ruoyi-framework/src/main/java/com/ruoyi/framework/config/ResourcesConfig.java
View file @
079b7eee
...
...
@@ -55,7 +55,6 @@ public class ResourcesConfig implements WebMvcConfigurer
public
CorsFilter
corsFilter
()
{
CorsConfiguration
config
=
new
CorsConfiguration
();
config
.
setAllowCredentials
(
true
);
// 设置访问源地址
config
.
addAllowedOriginPattern
(
"*"
);
// 设置访问源请求头
...
...
ruoyi-framework/src/main/java/com/ruoyi/framework/web/service/TokenService.java
View file @
079b7eee
...
...
@@ -49,7 +49,7 @@ public class TokenService
protected
static
final
long
MILLIS_MINUTE
=
60
*
MILLIS_SECOND
;
private
static
final
Long
MILLIS_MINUTE_T
EN
=
20
*
60
*
1000L
;
private
static
final
Long
MILLIS_MINUTE_T
WENTY
=
20
*
60
*
1000L
;
@Autowired
private
RedisCache
redisCache
;
...
...
@@ -127,14 +127,14 @@ public class TokenService
/**
* 验证令牌有效期,相差不足20分钟,自动刷新缓存
*
* @param loginUser
* @param loginUser
登录信息
* @return 令牌
*/
public
void
verifyToken
(
LoginUser
loginUser
)
{
long
expireTime
=
loginUser
.
getExpireTime
();
long
currentTime
=
System
.
currentTimeMillis
();
if
(
expireTime
-
currentTime
<=
MILLIS_MINUTE_T
EN
)
if
(
expireTime
-
currentTime
<=
MILLIS_MINUTE_T
WENTY
)
{
refreshToken
(
loginUser
);
}
...
...
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java
View file @
079b7eee
...
...
@@ -365,7 +365,7 @@ public class SysMenuServiceImpl implements ISysMenuService
/**
* 获取路由名称,如没有配置路由名称则取路由地址
*
* @param
routerN
ame 路由名称
* @param
n
ame 路由名称
* @param path 路由地址
* @return 路由名称(驼峰格式)
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment