From 86d9409ae224b13e6c07e5883f02c61de3c5ee3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=E5=98=89=E9=98=B3?= Date: Mon, 8 Oct 2018 16:00:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A3=85=E9=A5=B0=E5=99=A8=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E6=BA=90=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/thriftCompiler.xml | 6 ++++++ pom.xml | 11 +++++++++++ .../structural/decorator/after/ABattercake.java | 5 +++++ 3 files changed, 22 insertions(+) create mode 100644 .idea/thriftCompiler.xml diff --git a/.idea/thriftCompiler.xml b/.idea/thriftCompiler.xml new file mode 100644 index 0000000..7bc123c --- /dev/null +++ b/.idea/thriftCompiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 2ddc0dd..9c9f69d 100644 --- a/pom.xml +++ b/pom.xml @@ -81,6 +81,12 @@ ${org.springframework.version} + + org.springframework + spring-context-support + ${org.springframework.version} + + org.springframework spring-oxm @@ -98,6 +104,11 @@ spring-tx ${org.springframework.version} + + org.apache.tomcat.embed + tomcat-embed-core + 8.5.32 + diff --git a/src/main/java/top/fjy8018/designpattern/pattern/structural/decorator/after/ABattercake.java b/src/main/java/top/fjy8018/designpattern/pattern/structural/decorator/after/ABattercake.java index a347151..c18534b 100644 --- a/src/main/java/top/fjy8018/designpattern/pattern/structural/decorator/after/ABattercake.java +++ b/src/main/java/top/fjy8018/designpattern/pattern/structural/decorator/after/ABattercake.java @@ -1,6 +1,11 @@ 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嘉阳 * @date 2018-09-27 17:04 */