上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 43 下一页
摘要: java 开发环境变量 变量名输入:JAVA_HOME变量值指的是实际的安装路径(比如小编的路径为:C:\Program Files\Java\jdk-9),最后点击确定。 Path变量设置 同样是在【系统变量中】我们可以看到path变量已经存在,那么我们只需要点击【编辑】,进入path变量的编辑 阅读全文
posted @ 2022-05-23 20:37 三瑞 阅读(27) 评论(0) 推荐(0) 编辑
摘要: springboot thymeleaf 后端 全局变量 pom.xml 中: <!-- google java lib --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <vers 阅读全文
posted @ 2022-05-21 14:59 三瑞 阅读(603) 评论(0) 推荐(0) 编辑
摘要: failed to lazily initialize a collection of role: com.test.security.rbac.domain.Resource.urls, could not initialize proxy - no Session 原: ...... /** * 阅读全文
posted @ 2022-05-17 17:56 三瑞 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 之前版本: import fs from 'fs' fs.readFile(txtFilePath, 'utf-8', function (err, dataText) { console.info("同步文件名In:", basename) //var fileName1 = basename; 阅读全文
posted @ 2022-05-12 17:05 三瑞 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 1、主库创建同步账号 #创建复制账号 CREATE User 'sync1' @'%' identified by 'Sync1'; #授权复制账号权限 GRANT REPLICATION SLAVE ON *.* TO 'sync1'@'%' identified by 'Sync1';#http 阅读全文
posted @ 2022-04-30 11:11 三瑞 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 查看被锁表: select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type='OBJECT' spid 锁表 阅读全文
posted @ 2022-04-22 12:34 三瑞 阅读(52) 评论(0) 推荐(0) 编辑
摘要: autowired WebSecurityConfigurerAdapter 中注册 过滤器时报下面错误: Could not autowired. Not beans of "XXXFilter" type found. 解决方法: 是在过滤器类上加一个 @Component Could not 阅读全文
posted @ 2022-04-17 23:09 三瑞 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 如果没有测试目录的按这个文档新建:https://www.csdn.net/tags/NtzaggxsNDA0NTYtYmxvZwO0O0OO0O0O.html 主要: 1、File->project Structer 点击文件,打开项目结构2、Modules–>Sources–>main右键–>N 阅读全文
posted @ 2022-04-17 10:26 三瑞 阅读(90) 评论(0) 推荐(0) 编辑
摘要: cnpm install --save jsencrypt index.html <script src="../node_modules/jsencrypt/bin/jsencrypt.min.js"></script> 阅读全文
posted @ 2022-04-16 11:30 三瑞 阅读(57) 评论(0) 推荐(0) 编辑
摘要: CopyProject.txt 文件中为要复制的项目名目录 项目名目录1 项目名目录2 EXCLUDE.txt 排除有文件目录 binobj 一键复制多项目源码.bat @echo off Setlocal enabledelayedexpansion @rem 下面变更可以修改 set srcDi 阅读全文
posted @ 2022-04-15 15:17 三瑞 阅读(267) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 43 下一页