草庐IT

user_defaults

全部标签

解决vite打包出现 “default“ is not exported by “node_modules/...问题

项目场景:vue3+ts+vite项目打包问题描述errorduringbuild:RollupError:"default"isnotexportedby"node_modules/vue/dist/vue.runtime.esm-bundler.js",importedby"node_modules/@kangc/v-md-editor/lib/codemirror-editor.js".aterror(file:///D:...原因分析:vite不支持commonjs语法,需要使用@rollup/plugin-commonjs插件,用于将CommonJS模块转换为ES6模块的Rollup

数据库报错:1045-Access denied for user “root“ @localhost (using password: yes)

目录一.前言二.分析原因三.解决问题3.1将现在的数据库全部卸载3.2直接修改数据库密码方法一.用setpassword命令  方法2:用mysqladmin 方法3:用update直接编辑user表 方法4:忘记密码处理方式一.前言  在我们开发中肯定会和数据库打交道,我的电脑发生点小问题,重做系统之后自己的环境和配置需要重新配置,数据库也是重新下载,在我安装数据库之后,再打开Navicat本地数据库时报错1045-Accessdeniedforuser"root"@localhost(usingpassword:yes)我们的数据库密码过期了,要知道我的数据库新下载,新配置的环境变量,对于

This modules directory was created using the following registries configuration: {“default“:“https:/

Thismodulesdirectorywascreatedusingthefollowingregistriesconfiguration:{"default":"https://registry.npm.taobao.org/"}.Thecurrentconfigurationis{"default":"https://registry.npmjs.org/"}.Torecreatethemodulesdirectoryusingthenewsettings,run"pnpminstall".运行pnpm报错,原因:发布npm时候换了官方镜像。解决办法:修改回淘宝镜像:npmconfigs

java - 了解 Hibernate hibernate.max_fetch_depth 和 hibernate.default_batch_fetch_size

Hibernatedocumenation给出了一些Hibernate配置属性。其中,hibernate.max_fetch_depthSetsamaximum"depth"fortheouterjoinfetchtreeforsingle-endedassociations(one-to-one,many-to-one).A0disablesdefaultouterjoinfetching.e.g.recommendedvaluesbetween0and3hibernate.default_batch_fetch_sizeSetsadefaultsizeforHibernatebat

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.10.1:compile (default-compil

原因:maven-compliler-plugin版本与maven版本不一致,Maven版本太低或maven-compiler-plugin版本过高解决方法:①降低maven-compliler-plugin版本,修改pom.xml中插件maven-compliler-plugin配置版本如下:(本人使用的是maven3.6.1,所以修改maven-compliler-plugin版本为3.1.0。 org.springframework.boot spring-boot-maven-plugin org.apache.maven.plugin

MAC解决MySQL登录ERROR 1045 (28000): Access denied for user root@localhost (using passwor)问题

发现问题今天在MAC上安装完MYSQL后,MYSQL默认给分配了一个默认密码,但当自己在终端上使用默认密码登录的时候,总会提示一个授权失败的错误:Accessdeniedforuser‘root’@’localhost’(usingpasswor)如图:解决问题首先,进入到/usr/local/mysql/support-file,然后按以下步骤操作:#cd/usr/local/mysql/support-file&&./mysql.serverstop#sudo/usr/local/mysql/bin/mysqld_safe--skip-grant-tables&mysql>UPDATEmy

BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.

执行启动项目命令时,出现BREAKINGCHANGE:webpack<5usedtoincludepolyfillsfornode.jscoremodulesbydefault。。。报错,原因是由于在webpack5中移除了nodejs核心模块的polyfill自动引入,所以需要手动引入解决方案:1.安装npminstallnode-polyfill-webpack-plugin2.然后在vue.config.json中添加:constNodePolyfillPlugin=require('node-polyfill-webpack-plugin')configureWebpack:{ plu

java - 错误 : syntax error at or near "user"

我正在使用Hibernate并有一个名为“User”的持久类。由于这是一个关键字,我用不同的名称标记了@Entity属性(例如,我看到了这个问题:Unabletousetablenamed"user"inpostgresqlhibernate)但是,我仍然遇到了麻烦,因为这个类扩展了另一个类,而且看起来hibernate仍在尝试使用“user”作为列名并且搞砸了:@Entity(name="XonamiUser")publicclassUserextendsPropertyContainer{...和@MappedSuperclasspublicabstractclassPropert

Java System.getProperty( "user.timezone") 不起作用

当我通过java-Duser.timezone="UTC"启动java程序时,System.out.println(System.getProperty("user.timezone"));System.out.println(newDate());//printstimeinUTC打印UTC时间,但是当我设置如下代码时:System.setProperty("user.timezone","UTC");System.out.println(System.getProperty("user.timezone"));//prints'UTC'System.out.println(newD