更新了商品类别
This commit is contained in:
parent
f34a57e8cb
commit
1e00e5f6fd
|
@ -13,6 +13,7 @@ public enum ErrorCode {
|
||||||
FORBIDDEN_ERROR(40300,"禁止访问"),
|
FORBIDDEN_ERROR(40300,"禁止访问"),
|
||||||
SYSTEM_ERROR(50000,"系统内部异常"),
|
SYSTEM_ERROR(50000,"系统内部异常"),
|
||||||
OPERATION_ERROR(50001,"操作失败"),
|
OPERATION_ERROR(50001,"操作失败"),
|
||||||
|
DATABASE_ERROR(50002, "数据库内部异常"),
|
||||||
LOGIN_ERROR(40110,"登陆状态变更");
|
LOGIN_ERROR(40110,"登陆状态变更");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -4,9 +4,12 @@ import com.cultural.heritage.common.BaseResponse;
|
||||||
import com.cultural.heritage.common.ErrorCode;
|
import com.cultural.heritage.common.ErrorCode;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.jdbc.CannotGetJdbcConnectionException;
|
||||||
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 java.sql.SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 全局异常处理器
|
* 全局异常处理器
|
||||||
*/
|
*/
|
||||||
|
@ -20,9 +23,26 @@ public class GlobalExceptionHandler {
|
||||||
return ResultUtils.error(e.getCode(), e.getMessage());
|
return ResultUtils.error(e.getCode(), e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 处理SQL异常(SQLException)
|
||||||
|
@ExceptionHandler(SQLException.class)
|
||||||
|
public BaseResponse<?> sqlExceptionHandler(SQLException e) {
|
||||||
|
log.error("SQL error", e);
|
||||||
|
return ResultUtils.error(ErrorCode.DATABASE_ERROR, "数据库操作失败,请检查SQL语句");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 处理数据库连接异常(CannotGetJdbcConnectionException)
|
||||||
|
@ExceptionHandler(CannotGetJdbcConnectionException.class)
|
||||||
|
public BaseResponse<?> jdbcConnectionExceptionHandler(CannotGetJdbcConnectionException e) {
|
||||||
|
log.error("Database connection error", e);
|
||||||
|
return ResultUtils.error(ErrorCode.DATABASE_ERROR, "无法连接到数据库,请检查数据库连接配置");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@ExceptionHandler(RuntimeException.class)
|
@ExceptionHandler(RuntimeException.class)
|
||||||
public BaseResponse<?> runtimeExceptionHandler(RuntimeException e) {
|
public BaseResponse<?> runtimeExceptionHandler(RuntimeException e) {
|
||||||
log.error("RuntimeException", e);
|
log.error("RuntimeException", e);
|
||||||
return ResultUtils.error(ErrorCode.SYSTEM_ERROR, "系统错误");
|
return ResultUtils.error(ErrorCode.SYSTEM_ERROR, "系统错误");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ spring:
|
||||||
# 生产环境
|
# 生产环境
|
||||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||||
url: jdbc:mysql://154.8.193.216:3306/feiyi?serverTimezone=Asia/Shanghai
|
url: jdbc:mysql://154.8.193.216:3306/feiyi?serverTimezone=Asia/Shanghai
|
||||||
username: feiyi
|
username: feiyi0
|
||||||
password: 123456asd
|
password: 123456asd
|
||||||
hikari:
|
hikari:
|
||||||
maximum-pool-size: 20
|
maximum-pool-size: 20
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<select id="queryAppointmentDateDetail" resultType="com.cultural.heritage.model.vo.appointment.AppointmentDateTimePeriodVO">
|
<select id="queryAppointmentDateDetail" resultType="com.cultural.heritage.model.vo.appointment.AppointmentDateTimePeriodVO">
|
||||||
select a.id, a.specificDate, a.isAvailable, a.goodId, t.id timePeriodId, t.timeSlot, t.minNumber, t.maxNumber
|
select a.id, a.specificDate, a.isAvailable, a.goodId, t.id timePeriodId, t.timeSlot, t.minNumber, t.maxNumber
|
||||||
from appointment_date a, time_period t
|
from appointment_date a, time_period t
|
||||||
where a.id = t.appointmentDateId and a.isDelete = 0 and t.isDelete =
|
where a.id = t.appointmentDateId and a.isDelete = 0 and t.isDelete = 0
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user