装饰器模式源码
This commit is contained in:
6
.idea/thriftCompiler.xml
generated
Normal file
6
.idea/thriftCompiler.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ThriftCompiler">
|
||||||
|
<compilers />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
11
pom.xml
11
pom.xml
@@ -81,6 +81,12 @@
|
|||||||
<version>${org.springframework.version}</version>
|
<version>${org.springframework.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-context-support</artifactId>
|
||||||
|
<version>${org.springframework.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework</groupId>
|
<groupId>org.springframework</groupId>
|
||||||
<artifactId>spring-oxm</artifactId>
|
<artifactId>spring-oxm</artifactId>
|
||||||
@@ -98,6 +104,11 @@
|
|||||||
<artifactId>spring-tx</artifactId>
|
<artifactId>spring-tx</artifactId>
|
||||||
<version>${org.springframework.version}</version>
|
<version>${org.springframework.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.tomcat.embed</groupId>
|
||||||
|
<artifactId>tomcat-embed-core</artifactId>
|
||||||
|
<version>8.5.32</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
package top.fjy8018.designpattern.pattern.structural.decorator.after;
|
package top.fjy8018.designpattern.pattern.structural.decorator.after;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Servlet源码:{@link javax.servlet.http.HttpServletRequestWrapper}
|
||||||
|
* JDK源码:IO类:{@link java.io.BufferedReader} {@link java.io.BufferedInputStream}
|
||||||
|
* Spring源码:{@link org.springframework.cache.transaction.TransactionAwareCacheDecorator}
|
||||||
|
* mybatis源码:{@link org.apache.ibatis.cache.decorators.LruCache}
|
||||||
|
*
|
||||||
* @author F嘉阳
|
* @author F嘉阳
|
||||||
* @date 2018-09-27 17:04
|
* @date 2018-09-27 17:04
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user