Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
cocktail-party-server
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
cocktail-party
cocktail-party-server
Commits
4d5c204b
提交
4d5c204b
authored
7月 06, 2023
作者:
RuoYi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化代码
上级
8ee740ef
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
26 行增加
和
2 行删除
+26
-2
DateUtils.java
...ommon/src/main/java/com/ruoyi/common/utils/DateUtils.java
+1
-1
GlobalExceptionHandler.java
...ruoyi/framework/web/exception/GlobalExceptionHandler.java
+24
-0
vue.config.js
ruoyi-ui/vue.config.js
+1
-1
没有找到文件。
ruoyi-common/src/main/java/com/ruoyi/common/utils/DateUtils.java
浏览文件 @
4d5c204b
...
@@ -147,7 +147,7 @@ public class DateUtils extends org.apache.commons.lang3.time.DateUtils
...
@@ -147,7 +147,7 @@ public class DateUtils extends org.apache.commons.lang3.time.DateUtils
/**
/**
* 计算时间差
* 计算时间差
*
*
* @param end
Tim
e 最后时间
* @param end
Dat
e 最后时间
* @param startTime 开始时间
* @param startTime 开始时间
* @return 时间差(天/小时/分钟)
* @return 时间差(天/小时/分钟)
*/
*/
...
...
ruoyi-framework/src/main/java/com/ruoyi/framework/web/exception/GlobalExceptionHandler.java
浏览文件 @
4d5c204b
...
@@ -7,8 +7,10 @@ import org.springframework.security.access.AccessDeniedException;
...
@@ -7,8 +7,10 @@ import org.springframework.security.access.AccessDeniedException;
import
org.springframework.validation.BindException
;
import
org.springframework.validation.BindException
;
import
org.springframework.web.HttpRequestMethodNotSupportedException
;
import
org.springframework.web.HttpRequestMethodNotSupportedException
;
import
org.springframework.web.bind.MethodArgumentNotValidException
;
import
org.springframework.web.bind.MethodArgumentNotValidException
;
import
org.springframework.web.bind.MissingPathVariableException
;
import
org.springframework.web.bind.annotation.ExceptionHandler
;
import
org.springframework.web.bind.annotation.ExceptionHandler
;
import
org.springframework.web.bind.annotation.RestControllerAdvice
;
import
org.springframework.web.bind.annotation.RestControllerAdvice
;
import
org.springframework.web.method.annotation.MethodArgumentTypeMismatchException
;
import
com.ruoyi.common.constant.HttpStatus
;
import
com.ruoyi.common.constant.HttpStatus
;
import
com.ruoyi.common.core.domain.AjaxResult
;
import
com.ruoyi.common.core.domain.AjaxResult
;
import
com.ruoyi.common.exception.DemoModeException
;
import
com.ruoyi.common.exception.DemoModeException
;
...
@@ -59,6 +61,28 @@ public class GlobalExceptionHandler
...
@@ -59,6 +61,28 @@ public class GlobalExceptionHandler
return
StringUtils
.
isNotNull
(
code
)
?
AjaxResult
.
error
(
code
,
e
.
getMessage
())
:
AjaxResult
.
error
(
e
.
getMessage
());
return
StringUtils
.
isNotNull
(
code
)
?
AjaxResult
.
error
(
code
,
e
.
getMessage
())
:
AjaxResult
.
error
(
e
.
getMessage
());
}
}
/**
* 请求路径中缺少必需的路径变量
*/
@ExceptionHandler
(
MissingPathVariableException
.
class
)
public
AjaxResult
handleMissingPathVariableException
(
MissingPathVariableException
e
,
HttpServletRequest
request
)
{
String
requestURI
=
request
.
getRequestURI
();
log
.
error
(
"请求路径中缺少必需的路径变量'{}',发生系统异常."
,
requestURI
,
e
);
return
AjaxResult
.
error
(
String
.
format
(
"请求路径中缺少必需的路径变量[%s]"
,
e
.
getVariableName
()));
}
/**
* 请求参数类型不匹配
*/
@ExceptionHandler
(
MethodArgumentTypeMismatchException
.
class
)
public
AjaxResult
handleMethodArgumentTypeMismatchException
(
MethodArgumentTypeMismatchException
e
,
HttpServletRequest
request
)
{
String
requestURI
=
request
.
getRequestURI
();
log
.
error
(
"请求参数类型不匹配'{}',发生系统异常."
,
requestURI
,
e
);
return
AjaxResult
.
error
(
String
.
format
(
"请求参数类型不匹配,参数[%s]要求类型为:'%s',但输入值为:'%s'"
,
e
.
getName
(),
e
.
getRequiredType
().
getName
(),
e
.
getValue
()));
}
/**
/**
* 拦截未知的运行时异常
* 拦截未知的运行时异常
*/
*/
...
...
ruoyi-ui/vue.config.js
浏览文件 @
4d5c204b
...
@@ -112,7 +112,7 @@ module.exports = {
...
@@ -112,7 +112,7 @@ module.exports = {
elementUI
:
{
elementUI
:
{
name
:
'chunk-elementUI'
,
// split elementUI into a single package
name
:
'chunk-elementUI'
,
// split elementUI into a single package
test
:
/
[\\/]
node_modules
[\\/]
_
?
element-ui
(
.*
)
/
,
// in order to adapt to cnpm
test
:
/
[\\/]
node_modules
[\\/]
_
?
element-ui
(
.*
)
/
,
// in order to adapt to cnpm
priority
:
20
,
// the weight needs to be larger than libs and app or it will be packaged into libs or app
priority
:
20
// the weight needs to be larger than libs and app or it will be packaged into libs or app
},
},
commons
:
{
commons
:
{
name
:
'chunk-commons'
,
name
:
'chunk-commons'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论