摘要: Spring Security 一、默认配置 1、默认会对所有请求都需要进行认证与授权; 2、默认使用httpBasic方式进行登录 3、默认的用户名为user,密码在启动应用时在console中有打印 4、自定义配置: package com.imooc.security.browser; imp 阅读全文
posted @ 2023-08-18 10:56 咔咔皮卡丘 阅读(126) 评论(0) 推荐(0)
摘要: RESTful 一、JsonPath 1、github:https://github.com/json-path/JsonPath 二、@JsonView使用步骤(用于解决同一个对象在不同的接口返回的字段不同的场景) 1、使用接口来声明多个视图2、在值对象的get方法上指定视图3、在Controll 阅读全文
posted @ 2023-08-18 10:24 咔咔皮卡丘 阅读(242) 评论(0) 推荐(0)
摘要: 一、什么是Spring Cloud 1、功能:配置管理、服务注册、服务发现、断路器、智能路由、负载均衡、服务间调用、微代理、一次性令牌、思维导图模板、全局锁、领导选举、分布式消息、分布式会话、集群状态 2、Spring Cloud 与 Spring Boot 的关系 Spring Boot 是构建 阅读全文
posted @ 2023-08-18 10:20 咔咔皮卡丘 阅读(32) 评论(0) 推荐(0)
摘要: 一、spring boot 初始化工程 1、网址:https://start.spring.io 二、Gradle 安装(绿色版) 1、windows下 -下载:http://downloads.gradle.org/distributions/gradle-3.5-bin.zip -解压: -配置 阅读全文
posted @ 2023-08-18 10:06 咔咔皮卡丘 阅读(81) 评论(0) 推荐(0)
摘要: 一、lunix系统(centos7) 系统:http://mirrors.aliyun.com/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1708.iso 软件源:http://mirrors.aliyun.com 软件源配置:https://opsx.ali 阅读全文
posted @ 2023-08-18 09:56 咔咔皮卡丘 阅读(370) 评论(0) 推荐(0)
摘要: 1、官网:http://jmeter.apache.org/ 2、下载:http://jmeter.apache.org/download_jmeter.cgi 3、用户手册:http://jmeter.apache.org/usermanual/index.html 补:另外redis-bench 阅读全文
posted @ 2023-08-17 18:09 咔咔皮卡丘 阅读(12) 评论(0) 推荐(0)
摘要: if (request.getHeader("x-requested-with") != null && request.getHeader("x-requested-with").equalsIgnoreCase("XMLHttpRequest")) { out.print("该请求是 AJAX 阅读全文
posted @ 2023-08-17 18:06 咔咔皮卡丘 阅读(25) 评论(0) 推荐(0)
摘要: 注意:重启或者从睡眠中唤醒虚拟机后,要systemctl restart network 前期准备 下载:http://www.oracle.com/technetwork/cn/server-storage/virtualbox/downloads/index.html 安装:https://bl 阅读全文
posted @ 2023-08-17 17:58 咔咔皮卡丘 阅读(283) 评论(0) 推荐(0)
摘要: 源码 https://gitee.com/learning_demo/sharding-jdbc 1.读写分离(主从)例子分支:readwrite-splitting 2.分库分表例子分支:sharding-databases-tables 1.分库分表+读写分离例子分支:sharding-read 阅读全文
posted @ 2023-08-17 17:11 咔咔皮卡丘 阅读(17) 评论(0) 推荐(0)
摘要: 1、添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> 2、添加配置 官方配置https://doc 阅读全文
posted @ 2023-08-17 16:43 咔咔皮卡丘 阅读(13) 评论(0) 推荐(0)