window.cnblogsConfig = { blogUser: 'MoYu', blogAvatar: 'https://gitee.com/MoYu-zc/picgo/raw/master/img/20210213094450.jpg', blogStartDate: '2020-02-09', webpageTitleOnblur: '(o゚v゚)ノ Hi,Back', webpageTitleOnblurTimeOut: 500, webpageTitleFocus: '(*´∇`*) 欢迎回来!', webpageTitleFocusTimeOut: 1000, webpageIcon: "https://gitee.com/MoYu-zc/picgo/raw/master/img/20210213094450.jpg", enable: true, // 是否开启日/夜间模式切换按钮 auto: { // 自动切换相关配置 enable: false, // 开启自动切换 dayHour: 7, // 日间模式开始时间,整数型,24小时制 nightHour: 20 // 夜间模式开始时间,整数型,24小时制 } switchDayNight: { enable: true, auto: { enable: true } }, progressBar: { id : 'top-progress-bar', // 请勿修改该值 color : '#77b6ff', height : '2px', duration: 0.2, }, loading: { rebound: { tension: 16, friction: 5, }, spinner: { id: 'spinner', radius: 90, sides: 3, depth: 4, colors: { background: '#f0f0f0', stroke: '#272633', base: null, child: '#272633', }, alwaysForward: true, // When false the spring will reverse normally. restAt: 0.5, // A number from 0.1 to 0.9 || null for full rotation renderBase: false, } }, homeTopAnimationRendered: true, homeTopAnimation: { radius: 15, density: 0.2, color: 'rgba(255,255,255, .2)', // 颜色设置,“random” 为随机颜色 clearOffset: 0.3, }, essayTopAnimationRendered: true, essayTopAnimation: { triW : 14, triH : 20, neighbours : ["side", "top", "bottom"], speedTrailAppear : .1, speedTrailDisappear : .1, speedTriOpen : 1, trailMaxLength : 30, trailIntervalCreation : 100, delayBeforeDisappear : 2, colorsRandom: false, // v1.2.4 是否开启随机颜色 colors: [ '#96EDA6', '#5BC6A9', '#38668C', '#374D84', '#BED5CB', '#62ADC6', '#8EE5DE', '#304E7B' ] }, homeTopImg: [ "https://cdn.jsdelivr.net/gh/BNDong/Cnblogs-Theme-SimpleMemory@master/img/webp/home_top_bg.webp", "https://cdn.jsdelivr.net/gh/BNDong/Cnblogs-Theme-SimpleMemory@master/img/webp/home_top_bg.webp" ], homeBannerTextType: "one", essayTopImg: [ "https://cdn.jsdelivr.net/gh/BNDong/Cnblogs-Theme-SimpleMemory@master/img/webp/nothome_top_bg.webp", "https://cdn.jsdelivr.net/gh/BNDong/Cnblogs-Theme-SimpleMemory@master/img/webp/nothome_top_bg.webp", "https://gitee.com/MoYu-zc/picgo/raw/master/img/20210208190902.jpg", "https://gitee.com/MoYu-zc/picgo/raw/master/img/20210208190954.jpg", ], codeMaxHeight: true, codeLineNumber: true, essayCode: { fontFamily: "'Ubuntu Mono',monospace", // 代码框字体 fontSize: "14px" // 代码框字体大小 }, }
摘要: Git 上传项目到 Github 该文章主要讲解Git 上传项目到 Github,Gitee同理 配置Git 下载、安装Git 下载后一路(傻瓜式安装)直接安装即可 如果第一次使用git的话,需要设置用户名和邮箱: git config --global user.name "username" g 阅读全文
posted @ 2021-03-28 13:37 MoYu-zc 阅读(177) 评论(0) 推荐(0) 编辑
摘要: SpringBoot-03 yaml+JSR303 Yaml 1.配置文件 SpringBoot使用一个全局的配置文件 , 配置文件名称是固定的 YAML是 "YAML Ain't a Markup Language" (YAML不是一种标记语言)的递归缩写。在开发的这种语言时,YAML 的意思其实 阅读全文
posted @ 2021-03-27 23:51 MoYu-zc 阅读(144) 评论(0) 推荐(0) 编辑
摘要: SpringBoot-02 运行原理初探 本篇文章根据b站狂神编写 pom.xml 2.1、父依赖 其中它主要是依赖一个父项目,主要是管理项目的资源过滤及插件! <parent> <groupId>org.springframework.boot</groupId> <artifactId>spri 阅读全文
posted @ 2021-03-27 22:47 MoYu-zc 阅读(99) 评论(0) 推荐(0) 编辑
摘要: Spring Boot-01 第一个Spring Boot 需要记得:Spring学好,才可以更好的学习SpringBoot SpringBoot核心思想:约定大于配置。 约定大于配置可以从以下两个方面来理解: 开发人员仅需规定应用中不符合约定的部分 在没有规定配置的地方,采用默认配置,以力求最简配 阅读全文
posted @ 2021-03-27 21:04 MoYu-zc 阅读(108) 评论(0) 推荐(0) 编辑
摘要: SSM整合 环境要求 环境: IDEA MySQL 5.1.47 Tomcat 9 Maven 3.6 这个SSM整合文章,以图书的增删改查为例 本文章源代码已上传: Github:https://github.com/MoYu-zc/SSM_template Gitee:https://gitee 阅读全文
posted @ 2021-03-27 21:01 MoYu-zc 阅读(157) 评论(0) 推荐(0) 编辑
摘要: Spring-Mybatis 整合 整合mybatis 1.导入依赖 mybatis <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.6</version> </dep 阅读全文
posted @ 2021-03-27 20:58 MoYu-zc 阅读(125) 评论(0) 推荐(0) 编辑
摘要: SpringMVC-07 拦截器+文件上传下载 拦截器 1.概述 SpringMVC的处理器拦截器类似于Servlet开发中的过滤器Filter,用于对处理器进行预处理和后处理。开发者可以自己定义一些拦截器来实现特定的功能。 **过滤器与拦截器的区别:**拦截器是AOP思想的具体应用。 过滤器 se 阅读全文
posted @ 2021-03-11 23:41 MoYu-zc 阅读(101) 评论(0) 推荐(0) 编辑
摘要: SpringMVC-06 Ajax Ajax 1.简介 AJAX = Asynchronous JavaScript and XML(异步的 JavaScript 和 XML)。 AJAX 是一种在无需重新加载整个网页的情况下,能够更新部分网页的技术。 Ajax 不是一种新的编程语言,而是一种用于创 阅读全文
posted @ 2021-03-11 23:39 MoYu-zc 阅读(98) 评论(0) 推荐(0) 编辑
摘要: SpringMVC-05 Json交互处理 Json 1.什么是JSON? JSON(JavaScript Object Notation, JS 对象标记) 是一种轻量级的数据交换格式,目前使用特别广泛。 采用完全独立于编程语言的文本格式来存储和表示数据。 简洁和清晰的层次结构使得 JSON 成为 阅读全文
posted @ 2021-03-09 10:10 MoYu-zc 阅读(96) 评论(0) 推荐(0) 编辑
摘要: SpringMVC-04 数据处理及跳转 结果跳转方式 1.ModelAndView 设置ModelAndView对象 , 根据view的名称 , 和视图解析器跳到指定的页面 . 页面 : {视图解析器前缀} + viewName +{视图解析器后缀} <!-- 视图解析器 --> <bean cl 阅读全文
posted @ 2021-03-09 00:16 MoYu-zc 阅读(102) 评论(0) 推荐(0) 编辑