上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 45 下一页

2019年11月20日

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 阅读(171) 评论(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) 编辑

2019年11月19日

Spring---Spring Aware

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

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

2019年11月14日

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 阅读(137) 评论(0) 推荐(0) 编辑

2019年11月11日

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 阅读(835) 评论(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 阅读(147) 评论(0) 推荐(0) 编辑

2019年11月5日

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 阅读(113) 评论(0) 推荐(0) 编辑

2019年10月15日

JVM---字节码指令集

摘要: 《JVM指令助记符》 变量到操作数栈:iload,iload_,lload,lload_,fload,fload_,dload,dload_,aload,aload_ 操作数栈到变量:istore,istore_,lstore,lstore_,fstore,fstore_,dstore,dstor_ 阅读全文

posted @ 2019-10-15 11:47 anpeiyong 阅读(1387) 评论(0) 推荐(2) 编辑

JavaSE---java命令---javap

摘要: 1、javap 1.1 javap是JDK自带的反解析工具; 1.2 作用:就是根据class字节码文件,反解析出 当前类 对应的code区(汇编指令)、本地变量表、异常表和代码行偏移量映射表、常量池等等信息; 1.3 常用的命令: javap -c 对当前class字节码进行反编译生成汇编代码; 阅读全文

posted @ 2019-10-15 10:56 anpeiyong 阅读(320) 评论(0) 推荐(0) 编辑

2019年10月11日

Filter

摘要: 1、概述 1.1 Filter 作用:拦截 传入的请求、传出的响应,并进行相应的处理; 1.2 Servlet框架提供的核心Filter是 javax.servlet.Filter接口 定义了所有Filter需要实现的方法: default public void init(FilterConfig 阅读全文

posted @ 2019-10-11 19:06 anpeiyong 阅读(133) 评论(0) 推荐(0) 编辑

上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 45 下一页

导航