11 2019 档案

Spring---MongoDB
摘要:1、MongoDB概述 1.1、NoSQL数据库 1.1.1、NoSQL的主要特点: 不使用SQL语言 作为查询条件; 数据存储 也不是固定的表、字段; 1.1.2、NoSQL数据库 主要有 文档存储型(MongoDB)、图形关系存储型(Neo4j)、key-value存储型(Redis); 1.2 阅读全文

posted @ 2019-11-27 20:30 anpeiyong 阅读(140) 评论(0) 推荐(0) 编辑

Spring---Redis
摘要:1、概述 1.1、Redis是一个基于key-value的开源内存数据存储; 1.2、Spring 对 Redis的支持 通过Spring Data Redis来实现; Spring Data JPA 为我们 提供了 连接相关的ConnectionFactory、数据操作相关的RedisTempla 阅读全文

posted @ 2019-11-27 19:56 anpeiyong 阅读(117) 评论(0) 推荐(0) 编辑

SVN
摘要:1、概述 1.1、Apache Subversion 通常被缩写成 SVN,是一个开放源代码的版本控制系统; 现在发展成为 Apache 软件基金会的一个项目; 采用了 分支 管理系统; 1.2、SVN的概念 repository 代码仓库 checkout 从远程仓库获取代码 commit 将本地 阅读全文

posted @ 2019-11-21 14:33 anpeiyong 阅读(140) 评论(0) 推荐(0) 编辑

Spring----组合注解与元注解
摘要:1、概述 1.1、Spring提供了大量的注解, 尤其是相同的注解用到各个类中,会相当的啰嗦; 1.2、元注解: 可以注解到别的注解上的注解; 组合注解: 被注解注解的注解称为 组合注解; 组合注解 具备 元注解 的功能,Spring的很多注解都可以作为元注解; 1.3、案例 package com 阅读全文

posted @ 2019-11-21 09:01 anpeiyong 阅读(590) 评论(0) 推荐(0) 编辑

Spring---条件注解@Conditional
摘要:1、概述 1.1、Spring4 提供了一个更通用的 基于条件的Bean的创建,即使用@Conditional注解; 1.2、案例 package com.an.config; import com.an.conditon.WindowsCondition; import com.an.condit 阅读全文

posted @ 2019-11-20 20:33 anpeiyong 阅读(172) 评论(0) 推荐(0) 编辑

Spring---计划任务
摘要:1、概述 1.1、Spring3.1开始,计划任务在Spring中实现变得异常简单; a,在配置类 注解@EnableScheduling ,开启对计划任务的支持; b,在要执行计划任务的方法上 注解@Scheduled ,声明这是一个计划任务; 1.2、案例 package com.an.conf 阅读全文

posted @ 2019-11-20 20:21 anpeiyong 阅读(117) 评论(0) 推荐(0) 编辑

Spring---Spring Aware
摘要:1、概述 1.1、Spring中的 所有Bean 对Spring容器的存在 是没有意识的(即你可以将容器换成别的容器,这样使用容器与Bean之间的耦合度很低); 但在实际项目中,不可避免的要用到Spring容器本身的功能资源,这时Bean必须意识到Spring容器的存在,才能调用Spring提供的资 阅读全文

posted @ 2019-11-19 17:20 anpeiyong 阅读(118) 评论(0) 推荐(0) 编辑

SpringBoot---概述
摘要:Overview Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". Spring Boot 让创建 独立、生产级别、 阅读全文

posted @ 2019-11-14 20:30 anpeiyong 阅读(139) 评论(0) 推荐(0) 编辑

SpringIntegration---Redis
摘要:1、依赖 <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-redis</artifactId> <version>5.2.1.RELEASE</version 阅读全文

posted @ 2019-11-11 19:59 anpeiyong 阅读(836) 评论(0) 推荐(0) 编辑

SpringIntegration---MongDB
摘要:1、依赖 <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-mongodb</artifactId> <version>5.2.1.RELEASE</versi 阅读全文

posted @ 2019-11-11 19:33 anpeiyong 阅读(148) 评论(0) 推荐(0) 编辑

Docker
摘要:1、概述 1.1 Docker 从 17.03 版本之后分为 CE(Community Edition: 社区版) 和 EE(Enterprise Edition: 企业版); 1.2 Docker 使用客户端-服务器 (C/S) 架构模式,使用远程API来管理和创建Docker容器。 1.3 Do 阅读全文

posted @ 2019-11-05 16:01 anpeiyong 阅读(114) 评论(0) 推荐(0) 编辑

导航

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示