摘要: 为什么 location /auth0/ { proxy_pass https://cdn.eu.auth0.com/; } 这样就可以但是 location /auth0/ { proxy_pass https://$arg_host/; } 就404$arg_host cdn.eu.auth0. 阅读全文
posted @ 2023-08-28 21:44 java.matt 阅读(481) 评论(0) 推荐(0) 编辑
摘要: https://cxymm.net/searchArticle?qc=spring%E4%B8%AD%E5%B8%B8%E7%94%A8%E8%8B%B1%E8%AF%AD%E5%8D%95%E8%AF%8D&page=1 阅读全文
posted @ 2021-12-20 22:18 java.matt 阅读(49) 评论(0) 推荐(0) 编辑
摘要: binary ['bainəri] 二进制octal ['ɔktəl] 八进制hex [heks] 十六进制 loop [lu:p] 循环 bubble ['bʌbl] 冒泡,气泡 //bullbeSort bonus [ 'bəunəs ] 奖金 memory ['meməri] 记忆,内存,存储 阅读全文
posted @ 2021-12-20 22:17 java.matt 阅读(61) 评论(0) 推荐(0) 编辑
摘要: -Xms128m-Xmx2005m-XX:ReservedCodeCacheSize=240m-XX:+UseConcMarkSweepGC-XX:SoftRefLRUPolicyMSPerMB=50-ea-XX:CICompilerCount=2-Dsun.io.useCanonPrefixCac 阅读全文
posted @ 2021-11-17 23:25 java.matt 阅读(43) 评论(0) 推荐(0) 编辑
摘要: package com.matt.xml.sax;import lombok.extern.slf4j.Slf4j;import org.junit.Test;import org.xml.sax.SAXException;import org.xml.sax.helpers.AttributesI 阅读全文
posted @ 2021-07-04 21:27 java.matt 阅读(30) 评论(0) 推荐(0) 编辑
摘要: https://github.com/alibaba/easyexcel <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.2.6</version> </depende 阅读全文
posted @ 2021-05-12 18:30 java.matt 阅读(433) 评论(0) 推荐(0) 编辑
摘要: maximumversionautowiresubscriberadvisoradvice data dynamic parameter resolve declared instance tokenizer camel 阅读全文
posted @ 2020-10-13 17:16 java.matt 阅读(66) 评论(0) 推荐(0) 编辑
摘要: <link rel="icon" id="favicon" href="//g.alicdn.com/dingding/web/0.2.6/img/oldIcon.ico" type="image/x-icon"> <link rel="icon" id="favicon" href="<%=bas 阅读全文
posted @ 2020-07-22 07:11 java.matt 阅读(147) 评论(0) 推荐(0) 编辑
摘要: https://www.ed2000k.com/ShowFile/169208.html http://www.xiexialai.com/xxl_gYKWwY.html https://pan.baidu.com/s/1hL9i4#list/path=%2F&parentPath=%2Fshare 阅读全文
posted @ 2020-06-29 18:02 java.matt 阅读(113) 评论(0) 推荐(0) 编辑
摘要: https://my.oschina.net/wangzhenchao/blog/918627 注册自定义属性解析器 阅读全文
posted @ 2020-05-14 19:15 java.matt 阅读(159) 评论(0) 推荐(0) 编辑
摘要: http://www.iocoder.cn/Spring-Security/laoxu/OAuth2-2/?vip 阅读全文
posted @ 2020-01-05 23:47 java.matt 阅读(186) 评论(0) 推荐(0) 编辑
摘要: mybatis-plus 主键生成是如何配置的 阅读全文
posted @ 2020-01-04 20:50 java.matt 阅读(1084) 评论(0) 推荐(0) 编辑
摘要: pom配置 阅读全文
posted @ 2019-12-24 18:27 java.matt 阅读(1409) 评论(0) 推荐(0) 编辑
摘要: AppClassLoader AppClassLoader应用类加载器,又称系统类加载器,负责在JVM启动时加载来自命令java中的classpath或者java.class.path系统属性或者CLASSPATH操作系统属性所指定的JAR类包和类路径 Bootstrap ClassLoder、Ex 阅读全文
posted @ 2019-12-24 00:13 java.matt 阅读(1451) 评论(0) 推荐(0) 编辑
摘要: 虚拟机团队把类加载阶段中的“通过一个类的全限定名来获取描述此类的二进制字节流”这个动作放到Java虚拟机的外部去实现,以便让应用程序自己决定如何去获取所需要的类。 实现这个动作的代码模块称为“类加载器”。 问题:这个动作放到虚拟机的外部实现,是如何放到虚拟机外部实现的, 什么样是虚拟机外部 类从被加 阅读全文
posted @ 2019-12-23 22:20 java.matt 阅读(152) 评论(0) 推荐(0) 编辑