2024年6月2日
摘要: log4net是Apache的C#日志系统,下面是详细配置: 一,用Nuget安装log4net: 1 2 二,修改App.config文件,添加配置项,下面是完整的配置文件内容: <?xml version="1.0" encoding="utf-8" ?> <configuration> <co 阅读全文
posted @ 2024-06-02 11:50 sunylat 阅读(6) 评论(0) 推荐(0) 编辑
  2023年10月22日
摘要: 阅读全文
posted @ 2023-10-22 16:25 sunylat 阅读(144) 评论(0) 推荐(0) 编辑
  2023年8月1日
摘要: 问题: 打开一个工程,原来肯定是可以正常编译的,忽然发现,好几个单元无法找到了,下面是其中一个单元找不到的现象截图: 解决方法:打开工程查看器,在“需要的软件包”上面鼠标右键,选择上面提升的包,添加后重新编译即可 阅读全文
posted @ 2023-08-01 21:14 sunylat 阅读(71) 评论(2) 推荐(0) 编辑
  2023年7月16日
摘要: 一,VSCode安装 https://code.visualstudio.com/docs/setup/linux 二,安装VSCode中各个插件: https://www.zhihu.com/tardis/zm/art/199187317?source_id=1005 注意:shell-forma 阅读全文
posted @ 2023-07-16 22:44 sunylat 阅读(767) 评论(0) 推荐(0) 编辑
  2023年6月17日
摘要: 阅读全文
posted @ 2023-06-17 12:43 sunylat 阅读(77) 评论(0) 推荐(0) 编辑
  2023年5月18日
摘要: 一,首选确保已经安装了node,我安装的是当前最新版:18.16 二,安装pnpm,在命令行中执行: npm install -g pnpm pnpm官网:https://www.pnpm.cn 三,打开Element plus admin工程,在里面双击i 随后就开始安装各种依赖了! Elemen 阅读全文
posted @ 2023-05-18 22:38 sunylat 阅读(130) 评论(0) 推荐(0) 编辑
  2023年4月27日
摘要: 错误截图: 解决办法: npm i eslint-plugin-import 参考: https://juejin.cn/post/7033416976064053278 阅读全文
posted @ 2023-04-27 15:48 sunylat 阅读(26) 评论(0) 推荐(0) 编辑
  2023年2月22日
摘要: 如果函数名和括号相连,eslint验证会报错,这个可以通过eslint的设置解决: 一,打开eslintrc.js,在rules配置中加入: 'space-before-function-paren':0 完整配置: rules: { // allow async-await 'generator- 阅读全文
posted @ 2023-02-22 09:47 sunylat 阅读(82) 评论(0) 推荐(0) 编辑
  2022年5月14日
摘要: 在系统设置中找到键盘,拉到最下面,点击添加按钮,随后里面分别输入下面内容: Open Terminal /bin/gnome-terminal 参考: https://blog.csdn.net/u012667477/article/details/84766061 阅读全文
posted @ 2022-05-14 08:17 sunylat 阅读(119) 评论(0) 推荐(0) 编辑
  2022年4月30日
摘要: 1,lombok在pom文件中需要引入正确版本,否则会导致maven的complier无法正常导入!!, 当前正确配置: <!-- 注意:lombok会导致编译不通过,需要引入正确版本--> <dependency> <groupId>org.projectlombok</groupId> <art 阅读全文
posted @ 2022-04-30 19:58 sunylat 阅读(37) 评论(0) 推荐(0) 编辑