上一页 1 2 3 4 5 6 7 8 9 10 ··· 21 下一页
摘要: 1. 必要环境 请确保已安装 node npm webpack 2.创建一个test文件夹 mkdir test && cd test && npm init 3. 创建 webpack.dev.config.js const path = require('path') const {CleanW 阅读全文
posted @ 2021-05-10 19:19 qukaige 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 请确保已经安装完一下命令: npm node webpack zip cp 命令 1. 安装 mendix-cli npm install mendix-cli -g 2. 创建widget项目 mendix create widgetName 3. 执行命令 cd widgetName && np 阅读全文
posted @ 2021-05-10 18:37 qukaige 阅读(321) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/violet_echo_0908/article/details/50129679 netstat -ano | findstr 80 //列出进程极其占用的端口,且包含 80 tasklist | findstr 9268 //第二步, 据进程号寻找进程 阅读全文
posted @ 2021-05-10 11:29 qukaige 阅读(74) 评论(0) 推荐(0) 编辑
摘要: #修改字MySQL字符集 vim mysql/conf/my.cnf #添加下面代码: [client] default-character-set=utf8 [mysql] default-character-set=utf8 [mysqld] init_connect='SET collatio 阅读全文
posted @ 2021-04-23 23:24 qukaige 阅读(54) 评论(0) 推荐(0) 编辑
摘要: pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2021-03-26 11:25 qukaige 阅读(32) 评论(0) 推荐(0) 编辑
摘要: elasticsearch 学习 https://www.cnblogs.com/qdhxhz/p/11493677.html es 基础概念: 索引index: 案由相同属性的文档集合 类型type: 索引可以定义一个或多个类型,文档必须属于一个类型 文档document: 文档是可以被索引的基本 阅读全文
posted @ 2021-03-16 17:59 qukaige 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 需要的jar <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>javax. 阅读全文
posted @ 2021-03-12 13:59 qukaige 阅读(3822) 评论(0) 推荐(0) 编辑
摘要: git 使用 git init 初始化git git add . 添加本地文件到暂存区(由暂存区提交到远程仓库) git commit -m '提交说明' (提交到本地仓库) git push origin master (将本地代码推送到远程仓库) git status 查看当前本地项目状态(那些 阅读全文
posted @ 2021-01-11 12:09 qukaige 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 1. 多数据源配置(SQLServer,PostgreSQL) 2. 集群session 配置 外部存储(redis) 3.SpringSecurity 登录安全认证 4.SpringSecurity remembreMe 配置 5. SpringSecurity SessionManager 配置 阅读全文
posted @ 2021-01-07 12:44 qukaige 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 1. 创建项目 sso-demo 父项目 sso-server 认证服务器 sso-client1 sso-client2 引入jar包 1.创建 sso-demo 项目 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="h 阅读全文
posted @ 2021-01-02 19:43 qukaige 阅读(292) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 21 下一页