From 780624c7563851be07b4b70d03b25c6ef31c5e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E5=91=98=E8=9C=97=E7=89=9B?= <1003271829@qq.com> Date: Sat, 9 Dec 2023 10:46:42 +0800 Subject: [PATCH] readme --- .idea/compiler.xml | 7 +- .idea/encodings.xml | 8 + .idea/misc.xml | 2 +- .idea/modules.xml | 4 + .idea/setting.xml | 8 + README.md | 9 +- .../cry-common/crypto-common.iml | 56 +----- .../cry-test/crypto-test.iml | 96 +--------- .../tool-desensitization.iml | 85 +-------- 事务/springtx.iml | 62 +------ 内存溢出/.idea/workspace.xml | 145 +++++++++++++++ .../.gitignore | 33 ++++ .../README.md | 11 ++ .../pom.xml | 72 ++++++++ .../demo/DemoRequestScopeApplication.java | 13 ++ .../com/example/demo/service/TestMain.java | 172 ++++++++++++++++++ .../src/main/resources/application.properties | 1 + .../src/main/resources/application.yml | 21 +++ .../com/example/demo/testscope/TestMain.java | 172 ++++++++++++++++++ .../mp-demo/mp-demo.iml | 8 + .../mp-demo/pom.xml | 110 +++++++++++ .../java/com/woniu/mp/MpDemoApplication.java | 21 +++ .../src/main/resources/application.yaml | 16 ++ .../src/main/resources/mapper/UserMapper.xml | 5 + .../com/woniu/mp/MpDemoApplicationTests.java | 12 ++ .../woniu/mp/mapper/TestTransactionTest.java | 69 +++++++ .../.idea/.gitignore | 8 + .../.idea/.name | 1 + .../.idea/compiler.xml | 18 ++ .../.idea/encodings.xml | 7 + .../.idea/jarRepositories.xml | 20 ++ .../.idea/misc.xml | 11 ++ .../.idea/setting.xml | 8 + .../.idea/uiDesigner.xml | 124 +++++++++++++ .../.idea/vcs.xml | 6 + .../.idea/内存溢出.iml | 9 + .../jvm-optimize/.idea/.gitignore | 8 + .../jvm-optimize/.idea/compiler.xml | 18 ++ .../jvm-optimize/.idea/encodings.xml | 6 + .../jvm-optimize/.idea/jarRepositories.xml | 20 ++ .../jvm-optimize/.idea/misc.xml | 15 ++ .../jvm-optimize/.idea/vcs.xml | 6 + 42 files changed, 1198 insertions(+), 305 deletions(-) create mode 100644 .idea/setting.xml create mode 100644 内存溢出/.idea/workspace.xml create mode 100644 工作中常用的一些Stream流操作~/.gitignore create mode 100644 工作中常用的一些Stream流操作~/README.md create mode 100644 工作中常用的一些Stream流操作~/pom.xml create mode 100644 工作中常用的一些Stream流操作~/src/main/java/com/example/demo/DemoRequestScopeApplication.java create mode 100644 工作中常用的一些Stream流操作~/src/main/java/com/example/demo/service/TestMain.java create mode 100644 工作中常用的一些Stream流操作~/src/main/resources/application.properties create mode 100644 工作中常用的一些Stream流操作~/src/main/resources/application.yml create mode 100644 工作中常用的一些Stream流操作~/src/test/java/com/example/demo/testscope/TestMain.java create mode 100644 状态模式优化代码中的if else/mp-demo/mp-demo.iml create mode 100644 状态模式优化代码中的if else/mp-demo/pom.xml create mode 100644 状态模式优化代码中的if else/mp-demo/src/main/java/com/woniu/mp/MpDemoApplication.java create mode 100644 状态模式优化代码中的if else/mp-demo/src/main/resources/application.yaml create mode 100644 状态模式优化代码中的if else/mp-demo/src/main/resources/mapper/UserMapper.xml create mode 100644 状态模式优化代码中的if else/mp-demo/src/test/java/com/woniu/mp/MpDemoApplicationTests.java create mode 100644 状态模式优化代码中的if else/mp-demo/src/test/java/com/woniu/mp/mapper/TestTransactionTest.java create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/.gitignore create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/.name create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/compiler.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/encodings.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/jarRepositories.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/misc.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/setting.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/uiDesigner.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/vcs.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/.idea/内存溢出.iml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/jvm-optimize/.idea/.gitignore create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/jvm-optimize/.idea/compiler.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/jvm-optimize/.idea/encodings.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/jvm-optimize/.idea/jarRepositories.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/jvm-optimize/.idea/misc.xml create mode 100644 系统不处理业务的时候 也占用大量的内存 该如何排查并解决?/jvm-optimize/.idea/vcs.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 31ce8e0..72ff854 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -16,6 +16,7 @@ + @@ -64,6 +65,7 @@ + @@ -80,6 +82,7 @@ + @@ -112,6 +115,8 @@ + + @@ -128,7 +133,7 @@ - + diff --git a/.idea/encodings.xml b/.idea/encodings.xml index 643fc81..0c01d2e 100644 --- a/.idea/encodings.xml +++ b/.idea/encodings.xml @@ -23,9 +23,14 @@ + + + + + @@ -34,6 +39,7 @@ + @@ -45,12 +51,14 @@ + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index 476f90e..5731ffe 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ - @@ -90,6 +89,7 @@ diff --git a/.idea/modules.xml b/.idea/modules.xml index c95e899..c4ec646 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -2,7 +2,11 @@ + + + + \ No newline at end of file diff --git a/.idea/setting.xml b/.idea/setting.xml new file mode 100644 index 0000000..ed05fd8 --- /dev/null +++ b/.idea/setting.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 02ae746..b5cccf4 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,4 @@ -感谢小伙伴们!蜗牛微信:aty1888 如果你想跟蜗牛以及其他小伙伴一起打卡 一起成长 可以联系我 加刚创建的一个知识星球 - -里面有丰富的学习资源 项目实战 面试资料 以及简历优化资料等等 还可以向很多大厂程序员大神提问题,帮助你规划路线 -,解决你学习的困惑!! - -最近连续打卡21天活动开启,坚持签到21天养成学习的好习惯,你会发现会受益终身! - -![输入图片说明](image/%E6%98%9F%E7%90%83%E4%BC%98%E6%83%A0%E5%88%B8.png) +感谢小伙伴们!蜗牛微信:aty1888 如果你想跟蜗牛以及其他小伙伴一起打卡 一起成长 可以联系我 强烈推荐一个良心的编程干货微信公众号:woniuxgg diff --git a/spring interface crypto 加解密 startrer/cry-common/crypto-common.iml b/spring interface crypto 加解密 startrer/cry-common/crypto-common.iml index 1435ba1..1daccae 100644 --- a/spring interface crypto 加解密 startrer/cry-common/crypto-common.iml +++ b/spring interface crypto 加解密 startrer/cry-common/crypto-common.iml @@ -1,62 +1,8 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/spring interface crypto 加解密 startrer/cry-test/crypto-test.iml b/spring interface crypto 加解密 startrer/cry-test/crypto-test.iml index 0a02ee2..1daccae 100644 --- a/spring interface crypto 加解密 startrer/cry-test/crypto-test.iml +++ b/spring interface crypto 加解密 startrer/cry-test/crypto-test.iml @@ -1,102 +1,8 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/一个注解实现数据脱敏/tool-desensitization.iml b/一个注解实现数据脱敏/tool-desensitization.iml index 2addc8b..1daccae 100644 --- a/一个注解实现数据脱敏/tool-desensitization.iml +++ b/一个注解实现数据脱敏/tool-desensitization.iml @@ -1,91 +1,8 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/事务/springtx.iml b/事务/springtx.iml index 1761b6c..1daccae 100644 --- a/事务/springtx.iml +++ b/事务/springtx.iml @@ -1,68 +1,8 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/内存溢出/.idea/workspace.xml b/内存溢出/.idea/workspace.xml new file mode 100644 index 0000000..ce4efe0 --- /dev/null +++ b/内存溢出/.idea/workspace.xml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { + "associatedIndex": 3 +} + + + + + + + + + + + + + + + + + + + + + + + + + + + 1701873482720 + + + + + + + + + + file://$PROJECT_DIR$/jvm-optimize/src/main/java/com/woniu/jvmoptimize/config/UserInterceptor.java + 18 + + + + + + +