mirror of https://gitee.com/maxjhandsome/pig
✨ 增加运行环境判断,避免nacos-server 在windows 中文路径运行环境初始化失败问题
This commit is contained in:
parent
62d034ab8e
commit
8626f087bb
|
@ -45,10 +45,10 @@ public class PigNacosApplication {
|
|||
*/
|
||||
private static boolean initEnv() {
|
||||
// 特殊处理 window 且用户名包含中文的用户,避免RocksDB 初始化失败
|
||||
// System.setProperty(SystemUtil.USER_HOME, "/nacos-path/");
|
||||
if (SystemUtil.getOsInfo().isWindows()
|
||||
&& Validator.hasChinese(SystemUtil.getUserInfo().getName())) {
|
||||
log.error("路径包含中文,需要在以下配置指定不包含中文目录");
|
||||
System.setProperty(SystemUtil.USER_HOME, "/nacos-path/");
|
||||
&& Validator.hasChinese(SystemUtil.getUserInfo().getHomeDir())) {
|
||||
log.error("路径包含中文,需要打开以上注释配置指定不包含中文目录");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue