- 博客(17)
- 收藏
- 关注
原创 C语言寻找二维数组鞍点
鞍点指该位置的元素是该行上最大值,同时也是该列最小值,二维数组可能没有鞍点。#include <stdio.h>#define M 4#define N 3void fun(int array[M][N]) { // 循环变量 int i, j; // 行最大行下标 行最大列下标 列最大行下标 int rowRowIndex, rowColIndex, colRowIndex; // 行最大值 列最大值 int rowMaxValue, colMinValue; //
2020-10-10 21:30:06 2718
原创 SpringCloud系列教程之注册服务中心(二)Zookeeper注册服务中心
一、版本要求Zookeeper:3.4.6SpringBoot:2.2.2.RELEASESpringCloud:Hoxton.SR1二、服务提供方在pom中添加Zookeeper注册中心依赖<!-- ZOOKEEPER 注册服务中心--><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-s
2020-09-16 21:30:07 188
原创 SpringCloud系列教程-注册服务中心(一)Eureka
Eureka,其是一种基于REST的服务组件,在SpringCloud生态体系中占据相对较为重要的地位,其在SpringCloud中被用于承当注册服务中心。本文将简单介绍Eureka注册服务中心的搭建及相关配置。软件版本 SpringBoot 2.2.2.RELEASE SpringCloud Hoxton.SR1 一、Eureka Server在服务端工程pom文件中新增Eureka Server依赖<dependency> <...
2020-09-16 21:12:06 174 1
原创 Elasticsearch教程(二)Kibana安装配置
1.简介Kibana是一个为Elasticsearch平台分析和可视化的开源平台,使用Kibana能够搜索、展示存储在Elasticsearch中的索引数据。使用它可以很方便用图表、表格、地图展示和分析数据。Kibana能够轻松处理大量数据,通过浏览器接口能够轻松的创建和分享仪表盘,通过改变Elasticsearch查询时间,可以完成动态仪表盘。2.安装包下载官方下载地址:V7.1.13.解压下载包tar -xzvf kibana-7.1.1-linux-x86_64.tar.gz
2020-08-05 16:21:08 195
原创 Elasticsearch教程(一)Elasticsearch安装
1.Elasticsearch简介Elasticsearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口。Elasticsearch是用Java语言开发的,并作为Apache许可条款下的开放源码发布,是一种流行的企业级搜索引擎。Elasticsearch用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便。官方客户端在Java、.NET(C#)、PHP、Python、Apache Groovy、Ruby和许多其他语言中都是可用的
2020-08-05 12:19:32 201
原创 SpringBoot环境中使用SpringUtils
SpringBoot开发环境中,在普通类或其他工具类中需要获取容器中的对象在开发中是较为常见的现象,可通过如下方式创建SpringUtils1、创建SpringUtils,自定义获取对象的具体方法实现package com.lemonzuo.util;import org.springframework.beans.BeansException;import org.springframework.context.ApplicationContext;import org.springfr
2020-08-02 22:49:25 9601 1
原创 SpringBoot系列教程(五)整合Shiro进行权限控制
本文采用shiro-spring-boot-starter方式将Shiro集成到SpringBoot开发环境中,对于Shiro不做过多的功能介绍。1.引入相关依赖<!-- Shiro --><dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring-boot-starter</artifactId> <ver
2020-08-02 22:40:34 181
原创 SpringBoot系列教程基于SpringBoot 2.x
SpringBoot系列教程(一)快速上手体验 SpringBoot系列教程(二)SpringBoot集成FastJson作为默认json解析器 SpringBoot系列教程(三)集成MyBatis、Druid SpringBoot系列教程(四)集成Redis SpringBoot系列教程(五)整合Shiro进行权限控制...
2020-08-02 22:07:46 94
原创 SpringBoot系列教程(四)集成Redis
1.引入Redis依赖包<!-- Redis --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis-reactive</artifactId></dependency>2.在配置文件中配置redis相关参数spring: redis:
2020-08-02 18:18:15 176
原创 SpringBoot系列教程(三)集成MyBatis、Druid
1.添加MyBatis和Druid对应依赖包 <!-- MyBatis --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.
2020-08-02 18:07:43 167
原创 SpringBoot系列教程(二)SpringBoot集成FastJson作为默认json解析器
1.添加FastJson依赖<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.61</version></dependency>2.创建FastJsonConf类package com.lemonzuo.config;import com
2020-08-02 17:53:06 249
原创 SpringBoot系列教程(一)快速上手体验
环境简介 JDK 1.8 Maven 3.5+ SpringBoot2.2.4.RELEASE IDEA 2019.3.1 采用Spring Initializr进行构建填写必要信息选择基本组件完成项目创建 查看主启动类 package com.lemonzuo;import com.lemonzuo.util.SpringUtil;import org.mybatis.spring.annotation.MapperScan;import org.springframew.
2020-08-02 17:45:01 143
原创 ajax跨域请求SESSION不一致
一次ajax跨域请求SESSION不一致解决方案场景重现:简单的登录注册模块,使用前后台分离,后台使用SpringMVC给前台提供数据接口支持,前台采用ajax请求后台数据。一:验证码package com.lemonzuo.service;import java.io.IOException;import javax.servlet.http.HttpServletResp...
2018-11-25 09:34:33 1041
原创 数据库远程连接工具无法连接Mysql80
数据库远程连接工具无法连接Mysql80报错信息:caching_sha2_password解决方法第一步:修改Mysql配置文件[mysqld]下添加default_authentication_plugin=mysql_native_password配置如下[mysqld]basedir = D:\MySQL80datadir = D:\MySQL80\dat...
2018-11-12 22:58:59 763
原创 SpringMVC快速上手体验
使用SpringMVC输出HelloWord(1)使用Maven创建WEB工程项目(2)添加WEB运行环境(3)配置pom.xml<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sche...
2018-09-21 09:21:28 220 1
原创 Centos一键安装JAVA环境
使用OnlineStack一键安装方式 网站地址参考资料:老左博客选取需要安装的软件信息,自动生成相应命令复制安装命令进行安装即可
2018-09-20 12:41:02 1314
原创 处理SpringMVC中文乱码问题
第一步:web.xml添加过滤器 <!-- 配置字符集为UTF-8 --> <filter> <filter-name>characterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.C...
2018-09-20 12:38:48 234
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人