自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(21)
  • 资源 (84)
  • 收藏
  • 关注

原创 Echart 触发多次自适应宽度

@[TOC](Echart 出发多次进行自适应 (window.onresize))由于 jQuery 本身也有插件支持则引用 jQuery, 引用方式 $(window).resize(function(){});$(document).ready(function () { // 基于准备好的dom,初始化echarts实例 var myChart = echarts...

2019-08-28 15:10:09 331

原创 Python 将照片转化为字符照片

Python 将照片转化为字符照片1. 照片2. 代码2. 效果1. 照片2. 代码#!/usr/bin/env python3# -*- coding: UTF-8 -*-from PIL import Imagedef save_img(new_height): # 读取照片 image_open = Image.open("Include/img/ken...

2019-08-23 18:42:23 315

原创 css 3D 自动旋转效果

css 3D 自动旋转效果1. 代码和效果1. 代码和效果代码<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title>照片</title> <style> html, body { margin: 0;...

2019-08-22 17:22:43 701 1

原创 用 python 爬虫 得到 csdn 博客的文章链接和标题

用 python 爬虫 得到 csdn 博客的文章链接和标题代码#!/usr/bin/env python3# -*- coding: UTF-8 -*-# Import corresponding modulesimport numpy as npimport pandas as pdimport requestsimport re# 设置列名字columns = n...

2019-08-21 17:25:54 308

原创 SpringBoot2 结构部署

SpringBoot2 结构部署1. 基本部署2. 详细布局2.1 config 的详细布局3. 文件内容3.1 application.properties3.2 pom.xml3.3 config 内的文件3.4 其他文件1. 基本部署2. 详细布局2.1 config 的详细布局3. 文件内容3.1 application.propertieshttps://blog.c...

2019-08-20 11:32:13 180

原创 SpringBoot2 中 pom.xml 文件

SpringBoot2 中 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" ...

2019-08-20 10:56:56 1418

原创 SpringBoot2 中 application.properties 配置文件

SpringBoot2 中 application.properties 配置文件此文件会随着时间不断更新# Activate the application-xxx.properties configuration file#spring.profiles.active=dev######################################################...

2019-08-20 09:07:38 543

原创 springboot2 配置 异步, 定时和邮件

springboot2 配置 异步, 定时和邮件1. 结构1.1 异步1.2 定时1.3 邮件1. 结构Springboot09Applicationpackage com.ykenan.ykenan;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconf...

2019-08-17 20:02:58 185

原创 springboot2 安全配置

springboot2 安全配置1. 结构1.1 导包1.2 前台页面1.2.1 index.html1.2.2 userLogin.html1.3 controller 层1.4 安全配置1. 结构1.1 导包版本对应: thymeleaf3 - - - layout2 - - - security3springboot2 默认 thymeleaf-extras-springsecu...

2019-08-17 19:36:01 509

原创 springboot2 引用静态资源文件和设置拦截器以及装饰图标

springboot2 引用静态资源文件和设置拦截器以及装饰图标1. 结构1.1 导包1.2 配置资源1.21 application.properties 配置1.22 WebStaticConfig 配置1.23 配置主页访问和拦截器1.24 将配置放入到容器中1.3 装饰图标2. 浏览器1. 结构1.1 导包引入 thymeleaf 适应版本<properties>...

2019-08-17 14:49:01 773

原创 springboot2 国际化 (i18n) 配置

springboot2 中 i18n 配置1. 结构1.1 application 配置1.2 添加 i18n1.3 前端接受 i18n 写入的值1.4 查看检验2. i18n 链接显示2.1 前端2.1 LocaleResolver 配置3. 浏览器1. 结构1.1 application 配置application.properties# spring International...

2019-08-17 14:25:38 8304 8

原创 springboot2 制定错误页面和自定义异常

springboot2 制定错误页面和自定义异常1. 结构1.1 异常处理类1.2 制定响应式错误页面的属性配置1.3 自定义错误异常1.4 转换器 (option)1.7 controller1.6 前端页面2. 页面1. 结构1.1 异常处理类ExceptionHandlerController:第一个方法是放回 JSON 数据.第一个方法是响应式返回数据, 即: 电脑返回页面...

2019-08-17 13:23:44 1194

原创 springboot2 以验证码为例添加 servlet 三大组件

springboot2 以验证码为例添加 servlet 三大组件1. 结构布局1.1 前端代码1.2 ServletConfig.java1.3 VerifyCode.java1.4 FilterConfig.java1.5 ListenerConfig.java1.6 application.properties1. 结构布局1.1 前端代码html 代码<img clas...

2019-08-17 10:23:56 272

原创 springboot2 与 Druid 有关配置

springboot2 与 Druid 有关配置1. 构成1.1 pom.xml 文件1.2 application.properties 文件1.3 y_student.sql 文件1.4 DruidConfig.java 文件1.5 Springboot04ApplicationTests.java 文件1.6 YStudentController.java 文件2. 浏览器显示1. 构成...

2019-08-16 22:55:18 526

原创 SpringBoot2 中 Redis 中的配置

SpringBoot2 中 Redis 中的配置1. 文件内容1.1 pom.xml1.2 application.properties1.2 RedisConfig.java1.2 SpringbootApplicationTests.java2. Redis 配置2.1 修改 redis.conf 文件2.2 重新启动 Redis3. 测试1. 文件内容1.1 pom.xml<d...

2019-08-15 20:47:03 1261

原创 Linux 安装 redis 和 本地连接 redis.

Linux 安装 redis 和 本地链接 redis.1. 安装 Redis1.1 下载安装包1.2 解压编译1.3 启动 Redis1.3.1 直接启动1.3.2 后台启动1.4 检查1.5 设置密码(Option)1.6 从新启动(Option)2. 连接 Redis2.1 下载软件2.2 安装 RedisDesktopManager-20192.3 链接 Redis3 下载软件链接1. ...

2019-08-15 12:52:46 3304

原创 安装 网址 大全

安装 网址 大全安装 网址安装 apache安装 网址https://www.linuxidc.com/topicnews.aspx?tid=14安装 apachehttps://yq.aliyun.com/articles/658927

2019-08-08 13:05:57 622

转载 SpringBoot 中的 properties 文件的配置的属性有哪些

SpringBoot 中的 properties 文件的默认设置有哪些官方例子# ===================================================================# COMMON SPRING BOOT PROPERTIES## This sample file is provided as a guideline. Do NOT...

2019-08-06 12:59:06 1714 1

原创 YTML 的语法

YTML 的语法1. 基本语法2. value 的写法2.1 字面量: 普通的 value (number, string, bool)2.2 对象, Map2.3 List, Set以数据为中心, 以空格检验到极致的语法1. 基本语法key: value冒号与 value 必须有空格缩进空格一致即可, 即左对齐属于同一级对字母大小写敏感service: post: ...

2019-08-06 09:39:13 335

原创 web 开发学习的一些网址

web 开发学习的一些网址此文件会随着时间不断更新##R包下载https://cran.r-project.org/web/packages/DBI/index.html##R包下载http://www.bioconductor.org/help/search/index.html?q=DBI/##IIS的各种身份验证详细测试http://www.cnblogs.com/ch...

2019-08-05 19:15:59 1097

原创 CentOS 7 清理 Docker 环境

CentOS 7 清理 Docker 环境1. 杀死所有运行容器2. 删除所有容器3. 删除所有镜像4. 停止 docker 服务5. 删除存储目录6. 卸载 docker1. 杀死所有运行容器docker kill $(docker ps -a -q)2. 删除所有容器docker rm $(docker ps -a -q)3. 删除所有镜像docker rmi $(dock...

2019-08-03 14:23:43 1245

CentOS-8.5.2111-x86-64-boot.iso 和 source url 文件

CentOS-8.5.2111-x86_64-boot.iso 文件和 source url.txt 文件,其中 source url.txt 文件里的内容为 http://mirrors.aliyun.com/centos/8-stream/BaseOS/x86_64/os/

2024-08-05

Fork 1.99.3 版本

非常优秀的开源 Git 管理工具

2024-08-05

Xshell 和 Xftp

Xftp-7.0.0112p.exe 和 Xshell-7.0.0115p.exe 学生版本

2023-08-01

jdk 17 Windows 版本

jdk 17 Windows 版本

2023-04-19

Fork 软件, 用于进行 Git 操作图形化界面

Fork 软件, 用于进行 Git 操作图形化界面

2023-01-23

yum.repos.d.zip

Centos8 下 yum 源不好使可以用这个内的文件代替 /etc/yum.repos.d 文件夹下的路径就可以的

2022-04-01

MySQL 8.0.28 Windows 版本

MySQL 8.0.28 Windows 版本

2022-03-27

R-4.1.2-win.exe

R-4.1.2-win.exe

2021-12-27

Postman-win64-9.3.0-Setup.exe

Postman

2021-12-27

npp.8.1.9.2.Installer.exe

notepad++

2021-12-27

mongodb-windows-x86_64-5.0.5-signed.msi

mongodb-windows-x86_64-5.0.5-signed.msi

2021-12-27

RStudio-2021.09.1-372.exe

RStudio-2021.09.1-372.exe

2021-12-27

rabbitmq_erlang.zip

rabbitmq-server-3.9.11.exe 和 otp_win64_21.0.1.exe

2021-12-27

Redis-x64-3.2.100.rar

Redis-x64-3.2.100.msi

2021-10-05

mongodb-windows-x86_64-enterprise-5.0.3-signed.msi

mongodb-windows-x86_64-enterprise-5.0.3-signed.msi

2021-10-03

apache-maven-3.8.2.rar

apache-maven-3.8.2.rar

2021-10-02

ioc_example.rar

一个手写 IOC 实例

2021-08-08

Markdown 下载资源

AtomSetup-x64.exe Haroopad-v0.13.1-win-x64.msi markdownpad2-setup.exe Mou.zip

2021-08-03

Xshell_Xftp_7.rar

Xshell-7.0.0076p.exe 和 Xftp-7.0.0074p.exe

2021-07-21

sliding_verification_code.rar

1. Vue 前端滑动验证码页面 2. Selenium 自动化识别 Vue 前端滑动验证码页面 免责声明:自本文章发布起, 本文章仅供参考,不得转载,不得复制等操作。浏览本文章的当事人如涉及到任何违反国家法律法规造成的一切后果由浏览本文章的当事人自行承担与本文章博客主无关。以及由于浏览本文章的当事人转载,复制等操作涉及到任何违反国家法律法规引起的纠纷和造成的一切后果由浏览本文章的当事人自行承担与本文章博客主无关。

2021-07-08

WinFormsBase.rar

一个简单 C#/.net WinForm 小小的链接 MySQL 的测试,运用的是 5.7.34 通过 mysql.data.dll 链接起来的。

2021-05-31

mysql-5.7.34&8.0.24-winx64.rar

mysql-5.7.34-winx64.zip 和 mysql-8.0.24-winx64.zip 两个版本 Windows 64 位

2021-05-18

R_RStudio.rar

R-4.0.5-win.exe,RStudio-1.4.1106.exe 文件

2021-04-20

离线安装 Nginx 的依赖包

离线安装 Nginx 的依赖包,依赖包共 44 个

2021-04-10

elasticsearch-analysis-ik-7.11.2.zip

elasticsearch-analysis-ik-7.11.2.zip

2021-03-25

rdm-2021.0.0.0.rar

rdm-2021.0.0.0.exe RedisDesktopManager

2021-03-24

Navicat 15 && Registration machine

Navicat 15.0.21 Navicat Registration machine 6.3.1

2021-01-13

jdk-10_windows-x64_bin.rar

jdk-10_windows-x64_bin.exe

2021-01-09

jdk-9.0.4_windows-x64_bin.rar

jdk-9.0.4_windows-x64_bin.exe

2021-01-09

jdk_8.0.1310.11_64.rar

jdk_8.0.1310.11_64.exe

2021-01-09

jdk-7u51-windows-i586.rar

jdk-7u51-windows-i586.exe

2021-01-09

node-v14.15.4-x64.msi

node.js 14.15.4-x64

2021-01-09

apache-maven-3.6.3

apache-maven-3.6.3 和 maven repository 常见的包

2021-01-09

npp.7.9.2.Installer.x64.rar

npp.7.9.2.Installer.x64.exe

2021-01-09

Git-2.30.0-64-bit.rar

Git-2.30.0-64-bit.exe

2021-01-09

Postman-win64-7.36.1-Setup.rar

Postman-win64-7.36.1-Setup.exe

2021-01-09

(Xshell && Xftp)7.rar

Xftp-7.0.0054p.exe, Xshell-7.0.0054p.exe

2021-01-09

python-3.9.1-amd64.rar

python-3.9.1-amd64.exe

2021-01-09

CentOS-8.3.2011-x86_64-boot.iso

CentOS8 镜像

2021-01-09

gradle.rar

包含 wrapper native daemon caches 四个文件夹, 其中 wrapper 包含 gradle-6.5-all 和 gradle-6.5-bin 两个文件夹.

2021-01-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除