2022年4月11日

webstorm 文件类型无法正确识别

摘要: 将项目中的文本文件修改后缀为JS可能导致此文件无法被识别为JS源码 因为webstorm自动增加对该文件名模式的文件类型关联规则 解... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(280) 评论(0) 推荐(0)

springsecurity oauth2 端点安全源码

摘要: 默认配置 AuthorizationServerSecurityConfigurer ...// 客户端默认使用BASIC AUTH... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(103) 评论(0) 推荐(0)

springsecurity oauth2 授权码模式流程

摘要: authorization_code 1.客户端站点尝试获取授权码 http://authServer/oauth/authoriz... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(562) 评论(0) 推荐(0)

extjs 部署时动态切换上下文路径

摘要: 修改index.html ... // 获取首页上下文路径 var basePath = window.location... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(42) 评论(0) 推荐(0)

extjs store 设置额外参数刷新数据

摘要: store.proxy.setExtraParams({param1: 'value1', param2: 'value2'});s... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(119) 评论(0) 推荐(0)

extjs store定义 通过ajax访问json数据

摘要: { proxy: { type: 'ajax', url: '/data.json', reader: { type: '... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(52) 评论(0) 推荐(0)

Extjs mvvm store绑定

摘要: view ...viewModel: { type: 'view1.mainviewmodel'},...bind:{ store:... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(54) 评论(0) 推荐(0)

spring 自定义配置属性 嵌套 集合

摘要: @ConfigurationProperties("init-data.auth")public class AuthPropert... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(147) 评论(0) 推荐(0)

springsecurity oauth2认证服务器 自定义登陆页面导致客户端授权异常处理

摘要: 如果认证服务器使用自定义登陆页面,且静态资源通过如下配置,将导致授权码模式客户端跳转认证服务器登陆成功后无法完成客户端授权,页面将跳... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(419) 评论(0) 推荐(0)

EXTJS7 自定义配置延迟初始化

摘要: config段中的自定义配置默认会在initConfig中被初始化,一般会在构造函数中调用initConfig。 使用lazy属性可... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(69) 评论(0) 推荐(0)

nginx 配置笔记

摘要: nginx.conf 处理器数量 worker_processes 1; http 客户端请求正文大小 client_max_bod... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(22) 评论(0) 推荐(0)

springboot 使用webjars打包静态资源模块

摘要: 依赖 org.webjars webjars-locator 0.39 maven build 配置 ... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(138) 评论(0) 推荐(0)

springsecurity oauth2sso 客户端单点登陆

摘要: 依赖 org.springframework.cloud spring-cloud-starter-oauth2 ... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(104) 评论(0) 推荐(0)

EXTJS7 引入treegrid包

摘要: EXTJS7默认模板没有引入treegrid包,使用treegird时会报错Unrecognized alias: widget.t... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(58) 评论(0) 推荐(0)

EXTJS7 store数据格式预处理

摘要: 服务接口提供的数据格式没办法直接使用,可通过实现reader.transform函数进行预处理 样例 Ext.create('Ext... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(81) 评论(0) 推荐(0)

EXTJS7 解决无法绑定父组件ViewModel问题

摘要: 子组件vm(VIewModel)初始化时会自动将父组件的vm设置为parent 如果子组件的vm初始化时子组件v(View)尚未ad... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(97) 评论(0) 推荐(0)

EXTJS7 eventedConfig用法

摘要: 使用eventedConfig的类需继承’Ext.Evented’eventedConfig自动并入到config中 // Even... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(49) 评论(0) 推荐(0)

jpa异常 org.hibernate.TransientPropertyValueException

摘要: object references an unsaved transient instance - save the transie... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(168) 评论(0) 推荐(0)

spring笔记 启动时自动运行

摘要: CommandLineRunner ApplicationRunner 参考资料 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(38) 评论(0) 推荐(0)

spring cloud笔记 oauth2授权服务 默认tokenService配置源码

摘要: AuthorizationServerEndpointsConfiguration ...private Authorization... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(343) 评论(0) 推荐(0)

spring cloud 搭建oauth2授权服务 使用redis存储令牌

摘要: 依赖 org.springframework.boot spring-boot-starter-data-redis ... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(342) 评论(0) 推荐(0)

spring cloud笔记 oauth2授权服务 clientDetails配置源码

摘要: clientDetails @EnableAuthorizationServer ...@Import({... Authoriza... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(620) 评论(0) 推荐(0)

spring笔记 验证框架

摘要: 验证框架 依赖注解注 依赖 org.springframework.boot spring-boot-starter... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(45) 评论(0) 推荐(0)

IDEA 插件整理

摘要: JAVA调用方法自动填充参数 auto filling(转) 生成代码 Easy Code(转) 自动生成set GenerateA... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(21) 评论(0) 推荐(0)

spring security笔记 默认登陆页面源码

摘要: 依赖 spring-security-web 源码 org.springframework.security.web.authent... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(23) 评论(0) 推荐(0)

EXTJS7 自定义日期时间选择输入框

摘要: 效果 组件定义 Ext.define('PSR.field.Datetime', { extend: 'Ext.field... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(259) 评论(0) 推荐(0)

EXTJS7 combobox本地模式 动态修改选项

摘要: 声明内存store xtype: 'combobox',// 默认为remote,store.remoteFilter会被设置为tr... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(104) 评论(0) 推荐(0)

EXTJS7 combobox 下拉加载数据源码

摘要: Trigger.js onClick: function(e) { var me = this, handler = !me... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(113) 评论(0) 推荐(0)

nginx 反向代理端口号丢失处理

摘要: 使用nginx反向代理时,非80端口的server重定向产生丢失端口号的异常 增加配置在HOST HEADER中转发端口号 serv... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(836) 评论(0) 推荐(0)

EXTJS7 可拖拉布局分割条

摘要: ...items: [{ // 需要使用panel才能生效 xtype: 'panel', docked: 'left', // 分... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(77) 评论(0) 推荐(0)

EXTJS7 config 自定义配置属性

摘要: Ext.define('myComponent', { extend: 'Ext.Component', // 自定义配置属性,会自... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(83) 评论(0) 推荐(0)

EXTJS7 自定义组件 IFRAME

摘要: Ext.define('PSR.Iframe', { extend: 'Ext.Component', xtype: '... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(35) 评论(0) 推荐(0)

EXTJS7 自定义组件 使用element和renderTpl绘制

摘要: 版本 7.4.0 Modern工具包 Ext.define('myComponent',{ // 继承Ext.Component e... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(130) 评论(0) 推荐(0)

extjs7 selectfield异常 Uncaught TypeError: Cannot read property 'hasPendingLoad' of null

摘要: 场景 下拉选择某项目后报异常 “Uncaught TypeError: Cannot read property ‘hasPendi... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(0) 评论(0) 推荐(0)

跨域IFRAME 安全的数据交互方案

摘要: 场景概述:站点A页面通过IFRAME嵌套站点B页面,A页面需要从B页面获取数据 站点B页面推送数据: parent.window.p... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(82) 评论(0) 推荐(0)

springsecurity 允许跨域IFRAME引用

摘要: WebSecurityConfigurerAdapter @Overrideprotected void configure(Htt... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(171) 评论(0) 推荐(0)

maven deploy异常

摘要: Deployment failed: repository element was not specified in the POM... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(935) 评论(0) 推荐(0)

npm install异常error code EPERM

摘要: Error: EPERM: operation not permitted, unlink 控制台需要使用管理员身份启动 ... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(148) 评论(0) 推荐(0)

springsecurity 多httpsecurity配置

摘要: 多配置时根据配置文件order依次套用httpsecurity规则,等效于http.and() http.authorizeRequ... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(172) 评论(0) 推荐(0)

spring security authenticated与fullyAuthenticated的区别

摘要: authenticated Returns true if the user is not anonymous fullyAuthe... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(54) 评论(0) 推荐(0)

spring 自定义配置属性

摘要: 依赖 org.springframework.boot spring-boot-configuration-proce... 阅读全文

posted @ 2022-04-11 22:40 路过君 阅读(169) 评论(0) 推荐(0)

大数据 分布式文件系统 HDFS概念

摘要: HDFS Hadoop Distributed File System 关键词 高度容错 高吞吐量 流式数据访问 前提与目标 前提目... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(69) 评论(0) 推荐(0)

使用android studio真机调试报错INSTALL_FAILED_TEST_ONLY

摘要: 真机调试安装APK阶段报错 INSTALL_FAILED_TEST_ONLY 解决 gradle.properties 增加配置 a... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(87) 评论(0) 推荐(0)

cordova安卓平台开发环境

摘要: 版本codova 6.x 环境 JDK 1.8GRADLEANDROID SDK 28 创建项目 安装CLI npm install... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(47) 评论(0) 推荐(0)

yml字符串值写法,单双引号区别,换行用法

摘要: 字符串默认不需要引号如果字符串包含空格或者特殊字符(例如冒号),需要加引号双引号不会对串中转义字符进行转义 #实际值为 someth... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(976) 评论(0) 推荐(0)

SpringCloudGateway 服务网关基础搭建

摘要: 1. 依赖 com.alibaba.cloud spring-cloud-starter-alibaba-nacos-... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(199) 评论(0) 推荐(0)

EXTJS7 开发模式运行禁止自动启动浏览器

摘要: 使用项目模板自带的npm脚本dev:desktop每次启动完都会自动打开浏览器访问http://localhost:1962 修改p... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(39) 评论(0) 推荐(0)

MQ(Message Queue) 消息队列概念

摘要: MQ(Message Queue) 消息队列 1. 概念 是一种先进先出的数据结构 2. 应用场景 应用解耦 高耦合会导致应用... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(147) 评论(0) 推荐(0)

EXTJS7 grid 自定义单元格组件,并实现事件和属性绑定

摘要: 1. 创建gridrow.viewModel,controller 2. 通过widgetcell.widget嵌套单元格内部组件 ... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(140) 评论(0) 推荐(0)

JAVA stream.collect整理

摘要: 1. 分组 Map> groupBy = entityList.stream() .collect(Collectors.group... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(79) 评论(0) 推荐(0)

angular9 添加IE浏览器支持

摘要: 默认模板没有启用IE浏览器支持 ng serve启动项目后,用IE浏览器打开为空白页 解决 修改browserslist,去掉前面的... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(52) 评论(0) 推荐(0)

angular 模板常用语法

摘要: 1. 结构指令 1.1 条件 extport class AppComponent { flag = true;} xxxxxxxx... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(93) 评论(0) 推荐(0)

EXTJS7 监听AJAX异步上传文件进度

摘要: 重写AJAX方法通过请求options传入为HTTPXMLRequest.upload.onprogress事件添加监听 Ext.d... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(78) 评论(0) 推荐(0)

spring boot文件上传失败 SizeLimitExceededException

摘要: 文件上传失败 前端报错 net::ERR_CONNECTION_RESET后端报错 org.apache.tomcat.util.h... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(89) 评论(0) 推荐(0)

EXTJS7 跨域文件上传

摘要: 默认的表单提交方式上传文件在跨域时有各种问题 直接使用Ajax提交表单如下: var formData = new FormData... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(72) 评论(0) 推荐(0)

angular 入门1

摘要: 1. 配置环境 1.1 安装命令行 cnpm install -g @angular/cli 2. 创建项目 2.1. 创建项目并自... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(30) 评论(0) 推荐(0)

mysql 登陆异常 Host 'x.x.x.x' is not allowed to connect to this MySQL server"

摘要: mysql默认只允许通过localhost访问 可通过以下语句查询 use mysql;select host from user ... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(0) 评论(0) 推荐(0)

mysqld install报错 缺少vcruntime140_1.dll文件

摘要: 需要安装VC++ 2019运行库 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(97) 评论(0) 推荐(0)

EXTJS7 treestore过滤方向配置

摘要: treestore过滤方向配置 默认treestore必须从根节点到子节点路径上所有节点都符合过滤条件才会显示如果需要显示符合条件的... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(83) 评论(0) 推荐(0)

nginx 请求头host转发规则

摘要: 默认值,固定使用主机虚拟域名 proxy_set_header Host $proxy_host; 例如,以下情况host=serv... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(868) 评论(0) 推荐(0)

spring cloud 使用nacos配置中心

摘要: 创建NACOS配置 Data ID: 配置文件名,格式为 [-spring.profiles.active].Group: 分组, ... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(452) 评论(0) 推荐(0)

EXTJS7 自定义分组规则

摘要: 在Store.grouper属性配置Ext.util.Grouper实现自定义分组规则 关键配置 grouper:{ // "DE... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(44) 评论(0) 推荐(0)

EXT7 textcell与gridcell区别

摘要: textcell用于显示纯文本内容,不会从column继承renderer、tpl和formatter gridcell是grid的... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(41) 评论(0) 推荐(0)

spring cloud 配置使用ribbon负载均衡

摘要: 启用负载均衡 // 在RestTemplate上增加注解启用负载均衡@LoadBalanced@Beanpublic RestTem... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(84) 评论(0) 推荐(0)

spring cloud 从服务注册组件获取服务实例

摘要: // 注入获取服务发现客户端DiscoveryClient discoveryClient;...// 根据服务ID(spring ... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(341) 评论(0) 推荐(0)

Chrome扩展开发

摘要: manifest.json { // 清单文件的版本,这个必须写,而且必须是2 "manifest_version": 2, // ... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(80) 评论(0) 推荐(0)

spring security oauth2 资源服务器WebAsyncTask/DeferredResult接口调用报错InsufficientAuthenticationException

摘要: 异常现象 访问非WebAsyncTask接口正常访问WebAsyncTask/DeferredResult接口成功执行代码逻辑,但返... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(423) 评论(0) 推荐(0)

EXTJS grid.column.renderer绑定失效

摘要: 案例 extjs版本: 7 modern items:[{ xtype: 'grid', itemConfig: { vie... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(63) 评论(0) 推荐(0)

spring security oauth2 资源服务/客户端无法正确获取权限

摘要: 异常现象 当资源服务/客户端使用token-info-uri校验token时无法获取全部的授权权限,只能获取其中一个权限,使用use... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(756) 评论(1) 推荐(1)

spring security默认访问权限判定源码

摘要: AffirmativeBased org.springframework.security.access.vote.Affirmat... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(57) 评论(0) 推荐(0)

JS 变量作用域导致的一个坑

摘要: 错误的案例: funcA = function(){ var obj = [] var numbers = []; for(var ... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(13) 评论(0) 推荐(0)

idea 远程调试

摘要: 1. 配置IDEA远程调试 菜单Run - Edit Configurations… 增加远程配置 填写远程服务IP,调试端口,选择... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(124) 评论(0) 推荐(0)

spring cloud搭建oauth2资源服务

摘要: 依赖 pom.xml org.springframework.boot spring-boot-starter-par... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(293) 评论(0) 推荐(0)

springboot maven项目打包SAPJCO3.JAR

摘要: 下载SAPJCO3 SAPJCO3 3.1.2 springboot项目加入本地JAR包依赖 pom.xml com.sap... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(883) 评论(0) 推荐(0)

SAPJCO3升级3.1后报错java.lang.UnsatisfiedLinkError: sapjco3.dll解决

摘要: 部署JCO3.0版本不报错 部署JCO3.1版本执行sapjco3.jar报错如下 java.lang.ExceptionInIni... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(584) 评论(0) 推荐(0)

sqlserver 修改数据库用户登录名

摘要: 还原数据库后数据库用户名需要与实例登录名关联 sp_change_users_login 'update_one','用户名','登... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(266) 评论(0) 推荐(0)

idea启用springboot项目热部署

摘要: 1. 启用自动构建 2. 启用应用运行时自动编译 alt+ctrl+shift+/ 3. 启用springboot项目运行更新... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(74) 评论(0) 推荐(0)

spring security 密码过期强制修改密码

摘要: 定义认证失败处理器处理CredentialsExpiredException密码过期异常 public class Authenti... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(737) 评论(0) 推荐(0)

Chrome 浏览使用IFRAME嵌套站点cookie传递失败

摘要: Chrome 51 开始,浏览器的 Cookie 新增加了一个SameSite属性,用来防止 CSRF 攻击和用户追踪。Chrome... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(1082) 评论(0) 推荐(0)

EXTJS7 自定义组件配置属性启用双向绑定

摘要: 使用publishes/twoWayBindable都可以启用配置属性的变更通知,既可实现双向绑定 // 默认配置属性只能做入参co... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(147) 评论(0) 推荐(0)

EXTJS7 publishes将配置属性发布到viewModel

摘要: 在组件声明使用publishes Ext.define('myComponent', { extend: 'Ext.Componen... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(30) 评论(0) 推荐(0)

nginx 启用websocket支持

摘要: nginx.conf修改配置 http { # http段增加 map $http_upgrade $connection_upgr... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(169) 评论(0) 推荐(0)

spring boot 使用websocket

摘要: 依赖 org.springframework.boot spring-boot-starter-websocket 配... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(367) 评论(0) 推荐(0)

spring data jpa 使用自定义repository实现类

摘要: spring data jpa中使用JpaRepository等接口定义repository时,将默认使用SimpleJpaRepo... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(378) 评论(0) 推荐(0)

spring security 获取当前用户

摘要: controller中,直接参数注入 @RequestMappingpublic void execute(Principal pr... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(127) 评论(0) 推荐(0)

spring data jpa deleteInBatch 导致异常 java.lang.StackOverflowError

摘要: 异常现象:使用deleteInBatch删除实体list如果元素数量过多会抛出异常如下: 原因分析:deleteInBatch实际转... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(186) 评论(0) 推荐(0)

angular9 ng start正常,build部署后无法正常加载页面

摘要: angular9 本地启动项目正常,构建部署后无法正常加载页面 原因 index.html默认源码中 如果项目没有部署在‘/’路径... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(132) 评论(0) 推荐(0)

springboot使用rocketmq RocketMQMessageListener参数

摘要: 参数 version 4.6 1. consumerGroup 消费者分组 2. topic 主题 3. selectorType ... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(2142) 评论(0) 推荐(0)

spring boot使用rocketmq

摘要: 依赖 org.apache.rocketmq rocketmq-spring-boot-starter 配置 rock... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(737) 评论(0) 推荐(0)

Teamcenter RAC 调用查询

摘要: TC可以通过“查询构建器”构造复杂的查询逻辑 RAC中可使用以下方法调用保存的查询 TCSession session = (TC... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(146) 评论(0) 推荐(0)

Teamcenter RAC 查找数据集并获取数据集中文件

摘要: // 根据名称查找数据集合TCComponentDatasetType datasetType = (TCComponentData... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(128) 评论(0) 推荐(0)

mysql The server time zone value 'xxx' is unrecognized

摘要: The server time zone value ‘�й���׼ʱ��’ is unrecognized or represen... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(0) 评论(0) 推荐(0)

mysql Public Key Retrieval is not allowed

摘要: mysql8以上版本默认使用 sha256_password 认证 密码在传输过程中必须加密保护,如果无法使用 TLS,就需要使用 ... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(344) 评论(0) 推荐(0)

mysql Unable to load authentication plugin 'caching_sha2_password'.

摘要: mysql 8.x版本的验证模块和之前版本不同: 之前版本是:default_authentication_plugin=mysq... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(0) 评论(0) 推荐(0)

rocketmq windows 单机部署

摘要: 案例ROCKETMQ版本 4.7 1. 设置环境变量ROCKETMQ_HOME为解压目录 2. 设置JAVA_HOME为JRE1.8... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(249) 评论(0) 推荐(0)

Eclipse RCP Teamcener 客户端插件开发环境配置

摘要: 适用于TC9版本客户端插件开发 1. IDE Eclipse JUNO https://www.eclipse.org/downlo... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(64) 评论(0) 推荐(0)

spring cloud oauth2资源服务器自定义认证失败和拒绝访问错误消息

摘要: JAVA CONFIG @Configuration@EnableResourceServerpublic class Resour... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(390) 评论(0) 推荐(0)

IDEA MAVEN模块名变灰

摘要: 现象 如下图所示:正常模块名是黑色,api模块名是灰色 原因 api项目的pom.xml文件被设置在maven忽略文件清单中解决 f... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(122) 评论(0) 推荐(0)

angular 路由使用

摘要: 创建路由模块 ng generate module app-routing --flat --module=app 修改app-ro... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(66) 评论(0) 推荐(0)

spring cloud以客户端授权模式访问受oauth2保护的资源

摘要: 1. 依赖 org.springframework.cloud spring-cloud-starter-oauth2... 阅读全文

posted @ 2022-04-11 22:39 路过君 阅读(135) 评论(0) 推荐(0)

导航