项目配置修改

This commit is contained in:
ldj_willow
2022-07-07 17:26:31 +08:00
parent d8b6b5fb5b
commit f52417286c
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ import lombok.extern.slf4j.Slf4j;
public enum DataTypeEnum {
/** mysql */
MYSQL("mysql", "mysql", "com.mysql.jdbc.Driver", "`", "`", "'", "'"),
MYSQL("mysql", "mysql", "com.mysql.cj.jdbc.Driver", "`", "`", "'", "'"),
/** oracle */
ORACLE("oracle", "oracle", "oracle.jdbc.driver.OracleDriver", "\"", "\"", "\"", "\""),

View File

@@ -56,7 +56,7 @@ https://juejin.cn/post/6844903775631572999
<!--开发环境:打印控制台-->
<springProfile name="dev">
<root level="debug">
<root level="info">
<appender-ref ref="CONSOLE"/>
</root>