原创 Java 序列化 和 反序列化

Serializable And Deserialize0.思維導圖三月 25, 2018. Created by XMind1.Serializable中譯:序列化含義:把Java對象 轉換成爲字節序列的過程。作用:當兩個進程進行遠程通

原创 Redis 簡介

Redis 簡介1.Redis 是什麼?1.1 含義英譯:Redis :Remote Dictionary Server中譯:遠程字典服務器含義:一個高性能的(key / value)分佈式 內存 數據庫  1.2 Redis 特點(和其

原创 Redis redis.conf 常見配置

redis.conf 常見配置1.Redis 守護進程 Redis默認不是以守護進程的方式運行,可以通過該配置項修改,使用yes啓用守護進程  daemonize no  ==> daemonize yes2.Redis pidfile 

原创 @Autowired 自動裝配

@Autowired 自動裝配 1.@Autowired 思維導圖 2.@Autowired Example 2.1 創建一個USB_Interface 接口 packagecom.spring.annotation.autowired

原创 Spring Boot 配置

Spring Boot 配置1. 基本配置:啓動配置@SpringBootApplication 是 Spring Boot 的 核心註解package org.springframework.boot.autoconfigure;imp

原创 @Configuration 配置spring 上下文

@Configuration 配置spring 上下文 1.@Configuration 思維導圖 三月 17, 2018. Created by XMind 2.@Configuration Example 2.1 配置 @Confi

原创 @Component 泛指組件的註冊bean

@Component 組件的註冊bean1.@Component 思維導圖2.@Component 思維導圖1.註冊Beanpackage com.spring.annotation.component;/*** Created by C

原创 @Bean Spring容器的唯一bean

1.@Bean 思維導圖 三月 18, 2018. Created by XMind 2.@Bean Example 2.1 定義一個Bean 的生命週期 package com.spring.annotation.bean; /**