会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
荣超
博客园
首页
新随笔
联系
订阅
管理
2022年11月9日
idea plugins搜索不出来
摘要: 1、点击File->Setting 打开设置 ,出现如下界面 2、点击右侧设置按钮 选择HTTP Proxy Settings... 3、选中 Auto-delect proxy settings 然后选中 Automatic proxy configyration Url: 并在后面的输入框输入
阅读全文
posted @ 2022-11-09 23:07 荣超
阅读(2192)
评论(0)
推荐(0)
2022年8月31日
Android camerax 预览
摘要: 引入依赖 def camerax_version = "1.2.0-alpha04" implementation "androidx.camera:camera-core:${camerax_version}" implementation "androidx.camera:camera-came
阅读全文
posted @ 2022-08-31 16:36 荣超
阅读(375)
评论(0)
推荐(0)
2022年8月30日
acme 生成 https 证书
摘要: 下载安装acme curl https://get.acme.sh | sh 命令执行后,需要关闭终端,重新连接命令就能生效了 执行下面 的命令生成证书 -d 指定需要生成证书的域名 --webroot 网站根目录 acme.sh --issue -d www.mydomain.com --webr
阅读全文
posted @ 2022-08-30 11:35 荣超
阅读(227)
评论(0)
推荐(0)
2022年8月9日
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.x:compile
摘要: 一般时由于项目所需要的jdk版本和使用的jdk版本不一致的问题 设置项目jdk版本即可 或者在pom.xml中配置jdk版本
阅读全文
posted @ 2022-08-09 14:30 荣超
阅读(26)
评论(0)
推荐(0)
Error running 'UserServiceApplication': Command line is too long. Shorten command line for UserServiceApplication or also for Spring Boot default configuration.
摘要: 项目启动时报错 Error running 'UserServiceApplication': Command line is too long. Shorten command line for UserServiceApplication or also for Spring Boot defa
阅读全文
posted @ 2022-08-09 14:25 荣超
阅读(359)
评论(0)
推荐(0)
2022年7月7日
nginx 反向代理
摘要: 注意下面两种之所以出现不同的结果 在于proxy_pass 地址结束位置是否是斜杠 如果最后没有斜杠 则匹配的uri 需要拼接上 否则不需要拼接匹配的uri server { listen 80; server_name www.test.com; #比如访问 http://www.test.com
阅读全文
posted @ 2022-07-07 15:57 荣超
阅读(25)
评论(0)
推荐(0)
maven 把jar推送给到本地仓库
摘要: 一般是maven仓库仓库找不到的包,只能找到jar包的情况下可以这么处理 使用idea直接引入jar打包时会提示找不到 file 指定需要推送的jar包 groupId 分组 artifactId 项目ID version 版本号 mvn install:install-file -Dfile=E:
阅读全文
posted @ 2022-07-07 11:25 荣超
阅读(408)
评论(0)
推荐(0)
2022年6月22日
c# 选择文件或目录
摘要: 选择目录 System.Windows.Forms.FolderBrowserDialog dialog = new System.Windows.Forms.FolderBrowserDialog(); dialog.RootFolder = Environment.SpecialFolder.D
阅读全文
posted @ 2022-06-22 15:13 荣超
阅读(1752)
评论(0)
推荐(0)
WPF常用布局
摘要: Canvas布局 Canvas是一个类似于坐标系的面板,所有的元素通过设置坐标来决定其在坐标系中的位置。具体表现为使用Left、Top、Right、 Bottom附加属性在Canvas中定位控件 StackPanel布局 StackPanel将控件按照行或列来顺序排列,但不会换行。通过设置面板的Or
阅读全文
posted @ 2022-06-22 14:48 荣超
阅读(334)
评论(0)
推荐(0)
2022年6月21日
leetcode10 正则表达式匹配
摘要: 正则表达式匹配 给你一个字符串 s 和一个字符规律 p,请你来实现一个支持 '.' 和 '*' 的正则表达式匹配。 '.' 匹配任意单个字符'*' 匹配零个或多个前面的那一个元素所谓匹配,是要涵盖 整个 字符串 s的,而不是部分字符串。 示例 1:输入:s = "aa", p = "a"输出:fal
阅读全文
posted @ 2022-06-21 14:31 荣超
阅读(35)
评论(0)
推荐(0)
下一页
公告