├── codingce-go └── lesson │ └── lesson-go │ ├── pkg │ └── mod │ │ └── cache │ │ └── lock │ ├── src │ └── lesson │ │ ├── modules_test │ │ └── modules_test │ │ │ ├── go.sum │ │ │ ├── main.go │ │ │ └── go.mod │ │ ├── golang_study │ │ ├── 14-golang-IM-System │ │ │ ├── go.mod │ │ │ ├── client │ │ │ ├── server │ │ │ └── main.go │ │ ├── 5-init │ │ │ ├── lib1 │ │ │ │ └── lib1.go │ │ │ ├── lib2 │ │ │ │ └── lib2.go │ │ │ └── main.go │ │ ├── 7-defer │ │ │ └── mydefer.go │ │ ├── 1-firstGolang │ │ │ └── hello.go │ │ ├── 11-reflect │ │ │ ├── test4_reflect.go │ │ │ └── test1_pair.go │ │ └── 13-channel │ │ │ ├── test4_channel.go │ │ │ └── test1_channel.go │ │ ├── lesson26_公开和未公开标识符 │ │ ├── counters │ │ │ └── counters.go │ │ └── entities │ │ │ └── entities.go │ │ ├── lesson28_标准库 │ │ └── logOne.go │ │ └── lesson17_接口 │ │ └── my-interface.go │ ├── errors.txt │ ├── test.txt │ ├── README.md │ └── bin │ └── go_build_Solution_go ├── codingce-security ├── .idea │ ├── .name │ ├── .gitignore │ ├── dictionaries │ ├── vcs.xml │ ├── encodings.xml │ └── modules.xml └── src │ └── main │ ├── java │ └── cn │ │ └── com │ │ └── codingce │ │ ├── mapper │ │ ├── xml │ │ │ ├── UserMapper.xml │ │ │ └── UserRoleMapper.xml │ │ ├── UserMapper.java │ │ └── UserRoleMapper.java │ │ └── service │ │ ├── UserService.java │ │ └── UserRoleService.java │ └── resources │ └── templates │ └── index.html ├── codingce-mybatisplus └── .idea │ ├── .name │ ├── .gitignore │ ├── codeStyles │ └── codeStyleConfig.xml │ ├── vcs.xml │ ├── encodings.xml │ └── modules.xml ├── codingce-javase ├── codingce-javabase │ ├── test.txt │ ├── src │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ ├── myenum │ │ │ └── test.txt │ │ │ ├── testone │ │ │ └── Person.java │ │ │ ├── testmethod │ │ │ └── Animal.java │ │ │ ├── testannotation │ │ │ └── Animal.java │ │ │ ├── testconstructor │ │ │ └── Person.java │ │ │ └── myselfannotation │ │ │ └── Person.java │ └── .idea │ │ ├── .gitignore │ │ ├── description.html │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ └── misc.xml ├── COMPUTATION │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── src │ │ ├── Body.java │ │ ├── Cube.java │ │ ├── Ball.java │ │ └── MainClass.java │ └── out │ │ └── production │ │ └── COMPUTATION │ │ ├── Ball.class │ │ ├── Body.class │ │ ├── Cube.class │ │ └── MainClass.class ├── CORE_C01_004 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── src │ │ └── com │ │ └── oraclesdp │ │ └── csg │ │ └── annotation │ │ └── ZjxMain.java ├── CORE_C01_005 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ └── misc.xml │ └── src │ │ ├── CodeMain.java │ │ └── com │ │ └── oraclesdp │ │ └── csg │ │ └── TestMain.java ├── CORE_C02_004 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ └── misc.xml │ └── src │ │ └── CodeMain.java ├── CORE_C02_005 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ └── misc.xml │ └── src │ │ └── CodeMain.java ├── CORE_C02_007 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ └── misc.xml │ └── out │ │ └── production │ │ └── CORE_C02_007 │ │ └── CodingMain.class ├── CORE_C02_011 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ └── misc.xml ├── CORE_C02_026 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ └── misc.xml │ └── src │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── CodeMain.java ├── CORE_C02_041 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── misc.xml │ │ └── modules.xml ├── CORE_C02_0921 │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── CORE_C02_0923 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── CORE_C03_033 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── src │ │ └── PIUtil.java ├── CORE_C04_002 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── modules.xml │ │ └── misc.xml ├── CORE_C05_1030 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── out │ │ └── production │ │ └── CORE_C05_1030 │ │ ├── Example.class │ │ └── Example$Person.class ├── CORE_C06_1104 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── out │ │ └── production │ │ │ └── CORE_C06_1104 │ │ │ ├── TestFive.class │ │ │ ├── TestFour.class │ │ │ ├── TestMain.class │ │ │ └── TestThree.class │ └── src │ │ └── TestThree.java ├── CORE_C07_037 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── out │ │ └── production │ │ └── CORE_C07_037 │ │ ├── Student.class │ │ └── ClassManager.class ├── CORE_C07_038 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── out │ │ └── production │ │ └── CORE_C07_038 │ │ ├── Student.class │ │ └── SchoolManager.class ├── Pro_Test_1115 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── out │ │ └── production │ │ │ └── Pro_Test_1115 │ │ │ ├── META-INF │ │ │ └── Pro_Test_1115.kotlin_module │ │ │ ├── MyOne.class │ │ │ ├── MapTest.class │ │ │ ├── Person.class │ │ │ ├── SetTest.class │ │ │ ├── ArrayTest.class │ │ │ ├── FileExercise.class │ │ │ ├── test │ │ │ └── TestMain.class │ │ │ ├── testtwo │ │ │ ├── Rou.class │ │ │ ├── Shape.class │ │ │ ├── Square.class │ │ │ └── MainClass.class │ │ │ ├── CollectionsTest.class │ │ │ ├── testone │ │ │ ├── Student.class │ │ │ ├── MainClass.class │ │ │ └── UnderGraduate.class │ │ │ ├── Serializable_Test.class │ │ │ └── testthree │ │ │ └── MainClass.class │ ├── object.txt │ └── src │ │ ├── testtwo │ │ ├── Shape.java │ │ └── MainClass.java │ │ ├── test │ │ └── TestMain.java │ │ ├── MyOne.java │ │ └── testone │ │ └── MainClass.java ├── SE_JAVA_EXP_E020 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── SE_JAVA_EXP_E023 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── out │ │ └── production │ │ └── SE_JAVA_EXP_E023 │ │ └── cn │ │ └── campsg │ │ └── java │ │ └── experiment │ │ ├── Score.class │ │ ├── Student.class │ │ └── MainClass.class ├── SE_JAVA_EXP_E025 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── SE_JAVA_EXP_E026 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── encodings.xml ├── SE_JAVA_EXP_E030 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── encodings.xml ├── SE_JAVA_EXP_E031 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── src │ │ └── cn │ │ └── campsg │ │ └── java │ │ └── experiment │ │ └── MainClass.java ├── SE_JAVA_EXP_E032 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── SE_JAVA_EXP_E033 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── SE_JAVA_EXP_E034 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── src │ │ └── cn │ │ └── campsg │ │ └── java │ │ └── experiment │ │ ├── SeekJob.java │ │ └── HrMarketer.java ├── SE_JAVA_EXP_E035P │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── src │ │ └── cn │ │ │ └── campsg │ │ │ └── java │ │ │ └── experiment │ │ │ ├── entity │ │ │ ├── AbstractSinger.java │ │ │ └── PopSinger.java │ │ │ └── MainClass.java │ └── out │ │ └── production │ │ └── SE_JAVA_EXP_E035P │ │ └── cn │ │ └── campsg │ │ └── java │ │ └── experiment │ │ ├── MainClass.class │ │ └── entity │ │ ├── PopSinger.class │ │ └── AbstractSinger.class ├── SE_JAVA_EXP_E037 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── SE_JAVA_EXP_E038 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── src │ │ └── cn │ │ └── campsg │ │ └── java │ │ └── experiment │ │ └── exception │ │ └── RoseException.java ├── SE_JAVA_EXP_E039 │ ├── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml │ └── out │ │ └── production │ │ └── SE_JAVA_EXP_E039 │ │ └── cn │ │ └── campsg │ │ └── java │ │ └── experiment │ │ ├── MainClass.class │ │ └── QueueCaller.class ├── SE_JAVA_EXP_E045 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── chapter_two_1009 │ └── .idea │ │ ├── .gitignore │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── modules.xml ├── codingce-stream │ ├── .idea │ │ ├── description.html │ │ ├── vcs.xml │ │ ├── encodings.xml │ │ └── modules.xml │ └── src │ │ ├── README.md │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── entity │ │ ├── Inner.java │ │ ├── Nested.java │ │ └── Outer.java └── CORE_C02_039 │ └── src │ └── PrintTable.java ├── codingce-framework └── codingce-label │ ├── logs │ └── sys-error.2023-03-03.log │ ├── label-api │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── application.yml │ │ └── java │ │ │ └── com │ │ │ └── bsh │ │ │ └── lable │ │ │ └── LableAdminApplication.java │ │ └── test │ │ └── java │ │ └── com │ │ └── bsh │ │ └── lable │ │ └── admin │ │ └── LableAdminApplicationTests.java │ ├── label-common │ └── src │ │ └── main │ │ └── resources │ │ └── application.properties │ └── label-system │ └── src │ └── main │ ├── java │ └── com │ │ └── bsh │ │ └── lable │ │ └── system │ │ └── dao │ │ └── AiReptLabelsDao.java │ └── resources │ └── mapper │ └── lable │ └── AiReptLabelsDao.xml ├── codingce-nginx ├── codingce-nginx-02 │ ├── README.md │ └── src │ │ └── main │ │ ├── resources │ │ ├── application.yml │ │ └── templates │ │ │ └── index.html │ │ └── java │ │ └── cn │ │ └── com │ │ └── codince │ │ ├── NginxApp.java │ │ └── controller │ │ └── IndexController.java └── codingce-nginx-01 │ └── src │ └── main │ ├── resources │ ├── application.yml │ └── templates │ │ └── index.html │ └── java │ └── cn │ └── com │ └── codince │ ├── NginxApp.java │ └── controller │ └── IndexController.java ├── codingce-es ├── .idea │ ├── .gitignore │ ├── dictionaries │ ├── vcs.xml │ └── encodings.xml ├── codingce-es-api │ └── src │ │ └── main │ │ ├── resources │ │ └── application.properties │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ ├── pojo │ │ └── User.java │ │ └── CodingceEsApiApplication.java └── codingce-es-jd │ └── src │ └── main │ ├── resources │ └── application.properties │ └── java │ └── cn │ └── com │ └── codingce │ └── pojo │ └── Content.java ├── codingce-redis ├── .idea │ ├── .gitignore │ ├── dictionaries │ ├── vcs.xml │ └── encodings.xml ├── redis-01-jedis │ └── src │ │ └── main │ │ ├── resources │ │ └── application.properties │ │ └── java │ │ └── cn │ │ └── com │ │ └── codincge │ │ └── RedisApplication.java └── redis-02-springboot │ └── src │ └── main │ └── resources │ └── application.properties ├── dubbo + zookeeper ├── .idea │ ├── .gitignore │ ├── vcs.xml │ └── encodings.xml ├── consumer-server │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ ├── service │ │ │ └── TicketService.java │ │ │ └── ConsumerServerApplication.java │ │ └── resources │ │ └── application.properties └── provider-server │ └── src │ ├── main │ ├── java │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ └── service │ │ │ └── TicketService.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── cn │ └── com │ └── codingce │ └── ProviderServerApplicationTests.java ├── codingce-media └── codingce-WebRTC │ └── codingce-webrtc │ ├── README.md │ └── src │ ├── main │ └── resources │ │ ├── webrtc.keystore │ │ └── static │ │ └── favicon.ico │ └── test │ └── java │ └── cn │ └── com │ └── codingce │ └── webrtc │ └── CodingceWebrtcApplicationTests.java ├── codingce-springboot ├── springboot-01-yaml │ └── src │ │ └── main │ │ ├── resources │ │ ├── application.properties │ │ └── person.properties │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── YamlApplication.java ├── springboot-09-shiro │ └── src │ │ └── main │ │ ├── resources │ │ ├── application.properties │ │ ├── i18n │ │ │ ├── login_en_US.properties │ │ │ ├── login.properties │ │ │ └── login_zh_CN.properties │ │ └── templates │ │ │ └── user │ │ │ ├── add.html │ │ │ └── update.html │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ ├── service │ │ └── UserService.java │ │ └── MyshiroApplication.java ├── springboot-10-mysaggger │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── application-dev.properties │ │ │ ├── application-pro.properties │ │ │ └── application.properties │ │ └── java │ │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ ├── pojo │ │ │ └── User.java │ │ │ └── MysagggerApplication.java │ │ └── test │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── MysagggerApplicationTests.java ├── springboot-12-myredis │ └── src │ │ └── main │ │ ├── resources │ │ └── application.properties │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── MyredisApplication.java ├── springboot-03-web │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── i18n │ │ │ │ ├── login_en_US.properties │ │ │ │ ├── login.properties │ │ │ │ └── login_zh_CN.properties │ │ │ ├── templates │ │ │ │ ├── error │ │ │ │ │ └── 500.html │ │ │ │ ├── test.html │ │ │ │ └── test2.html │ │ │ ├── public │ │ │ │ └── index.html │ │ │ └── application.yml │ │ └── java │ │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ ├── controller │ │ │ ├── DashBoardController.java │ │ │ └── HelloController.java │ │ │ └── WebApplication.java │ │ └── test │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── WebApplicationTests.java ├── springboot-06-mybatis │ └── src │ │ └── main │ │ └── resources │ │ ├── i18n │ │ ├── login_en_US.properties │ │ ├── login.properties │ │ └── login_zh_CN.properties │ │ ├── templates │ │ ├── error │ │ │ └── 500.html │ │ ├── test.html │ │ └── test2.html │ │ └── public │ │ └── index.html ├── springboot-07-springsecurity │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── i18n │ │ │ ├── login_en_US.properties │ │ │ ├── login.properties │ │ │ └── login_zh_CN.properties │ │ │ └── templates │ │ │ ├── error │ │ │ └── 500.html │ │ │ └── views │ │ │ ├── level1 │ │ │ ├── 1.html │ │ │ ├── 2.html │ │ │ └── 3.html │ │ │ ├── level2 │ │ │ ├── 1.html │ │ │ ├── 2.html │ │ │ └── 3.html │ │ │ └── level3 │ │ │ ├── 1.html │ │ │ ├── 2.html │ │ │ └── 3.html │ │ └── test │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── MyspringsecurityApplicationTests.java ├── springboot-11-mytask │ └── src │ │ └── main │ │ └── resources │ │ └── application.properties ├── springboot-02-myconfig │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── application.yml │ │ └── java │ │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ └── MyconfigApplication.java │ │ └── test │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── MyconfigApplicationTests.java ├── springboot-04-myjdbc │ └── src │ │ └── main │ │ ├── resources │ │ └── application.yml │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── MyjdbcApplication.java └── springboot-05-mydruid │ └── src │ └── main │ └── java │ └── cn │ └── com │ └── codingce │ └── MydruidApplication.java ├── codingce-websocket └── src │ ├── main │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── cn │ └── com │ └── codingce │ └── websocket │ └── CodingceDemoApplicationTests.java ├── codingce-chatgpt └── codingce-gpt │ └── src │ ├── main │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── cn │ └── com │ └── codingce │ └── demo │ └── CodingceDemoApplicationTests.java ├── codingce-springcloud ├── springcloud-consumer-hystrix-dashboard │ └── src │ │ └── main │ │ └── resources │ │ ├── application.yml │ │ └── banner.txt ├── springcloud-config-eureka-7001 │ └── src │ │ └── main │ │ └── resources │ │ ├── application.yml │ │ ├── bootstrap.yml │ │ └── banner.txt ├── springcloud-config-client-3355 │ └── src │ │ └── main │ │ └── resources │ │ ├── application.yml │ │ ├── bootstrap.yml │ │ └── banner.txt ├── springcloud-config-provider-dept-8001 │ └── src │ │ └── main │ │ └── resources │ │ ├── application.yml │ │ ├── bootstrap.yml │ │ └── banner.txt ├── springcloud-consumer-dept │ └── src │ │ └── main │ │ └── resources │ │ ├── application.yml │ │ └── banner.txt ├── springcloud-cusumer-dept-feign │ └── src │ │ └── main │ │ └── resources │ │ ├── application.yml │ │ └── banner.txt ├── springcloud-eureka-7001 │ └── src │ │ └── main │ │ └── resources │ │ └── banner.txt ├── springcloud-eureka-7002 │ └── src │ │ └── main │ │ └── resources │ │ ├── banner.txt │ │ └── application.yml ├── springcloud-zuul-9527 │ └── src │ │ └── main │ │ └── resources │ │ └── banner.txt ├── springcloud-config-server-3344 │ └── src │ │ └── main │ │ └── resources │ │ └── banner.txt ├── springcloud-eureka-7003 │ └── src │ │ └── main │ │ └── resources │ │ └── application.yml ├── springcloud-provider-dept-8001 │ └── src │ │ └── main │ │ ├── resources │ │ └── banner.txt │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── springcloud │ │ └── service │ │ └── DeptService.java ├── springcloud-provider-dept-8002 │ └── src │ │ └── main │ │ └── resources │ │ └── banner.txt ├── springcloud-provider-dept-8003 │ └── src │ │ └── main │ │ └── resources │ │ └── banner.txt └── springcloud-provider-dept-hystrix-8001 │ └── src │ └── main │ └── resources │ └── banner.txt ├── young-quartz ├── .idea │ ├── young-quartz.iml │ ├── dictionaries │ │ └── Administrator.xml │ ├── vcs.xml │ └── encodings.xml ├── target │ ├── classes │ │ └── com │ │ │ └── young │ │ │ └── quartz │ │ │ ├── QuartzMain.class │ │ │ ├── job │ │ │ ├── DemoJob.class │ │ │ ├── RamJob.class │ │ │ ├── DemoSchedule.class │ │ │ ├── HelloQuartz.class │ │ │ └── TimeRemindJob.class │ │ │ └── SimpleQuartzApp.class │ └── test-classes │ │ └── com │ │ └── young │ │ └── quartz │ │ ├── AppTest.class │ │ └── job │ │ └── RamJobTest.class └── src │ └── test │ └── java │ └── com │ └── young │ └── quartz │ └── AppTest.java ├── codingce-rabbitmq ├── rabbitmq-01-hello │ └── src │ │ └── main │ │ └── resources │ │ └── application.properties ├── .idea │ ├── dictionaries │ ├── vcs.xml │ └── encodings.xml └── rabbitmq-02-springboot │ └── src │ └── main │ └── java │ └── cn │ └── com │ └── codingce │ ├── dto │ ├── Tag.java │ └── MessageObject.java │ ├── controller │ └── CustomerController.java │ └── common │ └── lang │ ├── CommonMQMsg.java │ └── ResultInterface.java ├── codingce-sms ├── src │ └── main │ │ ├── resources │ │ └── application.properties │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ ├── service │ │ └── SendSms.java │ │ └── CodingceSmsApplication.java └── .idea │ ├── dictionaries │ ├── vcs.xml │ ├── modules.xml │ └── encodings.xml ├── codingce-springmvc ├── springmvc-06-ssm01 │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ └── pojo │ │ │ └── User.java │ │ └── resources │ │ └── database.properties ├── springmvc-05-json │ └── web │ │ ├── WEB-INF │ │ ├── test.jsp │ │ └── jsp │ │ │ └── test.jsp │ │ └── index.jsp ├── springmvc-09-file │ └── web │ │ └── WEB-INF │ │ └── jsp.jsp ├── springmvc-07-ajax │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ └── hello.jsp ├── springmvc-01-servlet │ └── web │ │ ├── WEB-INF │ │ └── jsp │ │ │ └── test.jsp │ │ └── index.jsp ├── springmvc-04-controller │ └── web │ │ └── WEB-INF │ │ └── jsp │ │ ├── hello.jsp │ │ └── test.jsp ├── springmvc-02-hellomvc │ └── web │ │ ├── WEB-INF │ │ └── jsp │ │ │ ├── hello.jsp │ │ │ └── test.jsp │ │ └── index.jsp └── springmvc-03-annotation │ └── web │ ├── WEB-INF │ └── jsp │ │ └── hello.jsp │ └── index.jsp ├── codingce-mybatis ├── mybatis-05 │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ ├── dao │ │ │ ├── StudentMapper.java │ │ │ └── TeacherMapper.java │ │ │ └── pojo │ │ │ ├── Teacher.java │ │ │ └── Student.java │ │ └── resources │ │ └── db.properties ├── mybatis-07 │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ ├── dao │ │ │ └── StudentMapper.java │ │ │ └── pojo │ │ │ ├── Student.java │ │ │ └── Teacher.java │ │ └── resources │ │ ├── db.properties │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── dao │ │ └── StudentMapper.xml ├── mybatis-08 │ └── src │ │ └── main │ │ ├── java │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ ├── dao │ │ │ ├── StudentMapper.java │ │ │ └── TeacherMapper.java │ │ │ └── pojo │ │ │ ├── Student.java │ │ │ └── Teacher.java │ │ └── resources │ │ ├── db.properties │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── dao │ │ └── StudentMapper.xml ├── mybatis-02 │ └── src │ │ └── main │ │ └── resources │ │ └── db.properties ├── mybatis-03 │ └── src │ │ └── main │ │ ├── resources │ │ └── db.properties │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── dao │ │ └── UserMapper.java ├── mybatis-04 │ └── src │ │ └── main │ │ └── resources │ │ └── db.properties ├── mybatis-06 │ └── src │ │ └── main │ │ ├── resources │ │ ├── db.properties │ │ └── cn │ │ │ └── com │ │ │ └── codingce │ │ │ └── dao │ │ │ └── TeacherMapper.xml │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ ├── pojo │ │ ├── Teacher.java │ │ └── Student.java │ │ └── dao │ │ ├── StudentMapper.java │ │ └── TeacherMapper.java └── mybatis-09 │ └── src │ └── main │ ├── resources │ └── db.properties │ └── java │ └── cn │ └── com │ └── codingce │ └── dao │ └── UserMapper.java ├── codingce-hdfsclient └── src │ └── main │ ├── java │ └── cn │ │ └── com │ │ └── codince │ │ └── mywritable │ │ └── mr │ │ ├── TqCombiner.java │ │ └── tq │ └── resources │ └── hdfs-site.xml ├── codingce-spring ├── spring-01-ioc1 │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ ├── dao │ │ ├── UserDao.java │ │ ├── UserDaoImpl.java │ │ ├── UserDaoMysqlImpl.java │ │ └── UserDaoOracleImpl.java │ │ └── service │ │ └── UserService.java ├── spring-10-mybatis │ └── src │ │ └── main │ │ ├── resources │ │ └── db.properties │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── mapper │ │ ├── UserMapper.java │ │ └── UserMapper.xml ├── spring-06-anno │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ ├── service │ │ └── UserService.java │ │ ├── controller │ │ └── UserController.java │ │ └── dao │ │ └── UserDao.java ├── spring-05-Autowired │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── pojo │ │ ├── Cat.java │ │ └── Dog.java ├── spring-08-proxy │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ ├── demo3 │ │ ├── Rent.java │ │ └── Host.java │ │ ├── demo01 │ │ ├── Rent.java │ │ ├── Host.java │ │ └── Client.java │ │ ├── demo2 │ │ ├── UserService.java │ │ └── Client.java │ │ └── demo4 │ │ └── UserService.java ├── spring-07-appconfig │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── config │ │ └── ZeConfig2.java ├── spring-09-aop │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ ├── service │ │ └── UserService.java │ │ └── diy │ │ └── DiyPointCut.java ├── spring-11-transaction │ └── src │ │ └── main │ │ └── java │ │ └── cn │ │ └── com │ │ └── codingce │ │ └── mapper │ │ └── UserMapper.java └── spring-05-before │ └── src │ └── main │ └── java │ └── cn │ └── com │ └── codingce │ └── codespring │ └── entity │ └── AutoSpellChecker.java ├── codingce-wx └── src │ └── main │ ├── resources │ └── templates │ │ └── index.html │ └── java │ └── cn │ └── com │ └── codingce │ └── wx │ └── WxApplication.java ├── codingce-jdbc ├── mxz.txt └── src │ └── main │ └── java │ └── cn │ └── com │ └── codingce │ └── entity │ ├── Teacher.java │ └── Student.java ├── codingce-hbase └── src │ └── main │ ├── java │ └── cn │ │ └── com │ │ └── codingce │ │ └── hbase │ │ └── conf │ │ └── HbaseConfig.java │ └── resources │ └── hdfs-site.xml ├── codingce-spark └── src │ └── main │ └── resources │ └── hdfs-site.xml └── hadoop-redis └── src ├── main ├── java │ └── cn │ │ └── com │ │ └── codingce │ │ ├── domain │ │ └── FileAttribute.java │ │ └── HadoopRedisApplication.java └── resources │ └── templates │ └── upload.html └── test └── java └── cn └── com └── codingce └── HadoopRedisApplicationTests.java /codingce-go/lesson/lesson-go/pkg/mod/cache/lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codingce-security/.idea/.name: -------------------------------------------------------------------------------- 1 | spring_security -------------------------------------------------------------------------------- /codingce-mybatisplus/.idea/.name: -------------------------------------------------------------------------------- 1 | codingce-mybatisplus -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/test.txt: -------------------------------------------------------------------------------- 1 | 中文输入 2 | English -------------------------------------------------------------------------------- /codingce-framework/codingce-label/logs/sys-error.2023-03-03.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-02/README.md: -------------------------------------------------------------------------------- 1 | # Nginx负载均衡测试 2 | 3 | -------------------------------------------------------------------------------- /codingce-es/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/modules_test/modules_test/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/src/cn/com/codingce/myenum/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codingce-redis/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-es/codingce-es-api/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codingce-redis/redis-01-jedis/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codingce-security/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /dubbo + zookeeper/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-mybatisplus/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_004/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_005/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_004/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_005/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_007/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_011/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_026/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_041/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0921/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0923/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C03_033/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C04_002/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C05_1030/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_037/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_038/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-media/codingce-WebRTC/codingce-webrtc/README.md: -------------------------------------------------------------------------------- 1 | # 工程简介 2 | 3 | # 延伸阅读 4 | 5 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-01-yaml/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-09-shiro/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E020/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E023/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E025/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E026/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E030/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E031/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E032/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E033/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E034/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E037/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E038/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E039/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E045/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/chapter_two_1009/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-01/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 10001 -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-02/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 10002 -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/src/Body.java: -------------------------------------------------------------------------------- 1 | public interface Body { 2 | float area(); 3 | } 4 | -------------------------------------------------------------------------------- /codingce-websocket/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | profiles: 3 | active: dev -------------------------------------------------------------------------------- /codingce-chatgpt/codingce-gpt/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | profiles: 3 | active: dev -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/errors.txt: -------------------------------------------------------------------------------- 1 | ERROR: 2021/09/10 14:56:29 logTwo.go:43: Something has failed 2 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/META-INF/Pro_Test_1115.kotlin_module: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /codingce-springboot/springboot-01-yaml/src/main/resources/person.properties: -------------------------------------------------------------------------------- 1 | name=zhangshangbiancheng 2 | age=19 -------------------------------------------------------------------------------- /codingce-springboot/springboot-10-mysaggger/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | server.port=8081 2 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-10-mysaggger/src/main/resources/application-pro.properties: -------------------------------------------------------------------------------- 1 | server.port=8082 2 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-10-mysaggger/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.profiles.active=dev -------------------------------------------------------------------------------- /codingce-framework/codingce-label/label-api/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | profiles: 3 | active: dev -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-consumer-hystrix-dashboard/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 9001 3 | -------------------------------------------------------------------------------- /young-quartz/.idea/young-quartz.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/test.txt: -------------------------------------------------------------------------------- 1 | Errors are values. 2 | Don't just check errors, handle them gracefully. 3 | Don't Panic. 4 | -------------------------------------------------------------------------------- /codingce-rabbitmq/rabbitmq-01-hello/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | spring.thymeleaf.cache=false 3 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/object.txt -------------------------------------------------------------------------------- /codingce-sms/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | 3 | spring.redis.host=127.0.0.1 4 | spring.redis.port=6379 -------------------------------------------------------------------------------- /codingce-es/codingce-es-jd/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | 3 | # 关闭thymeleaf缓存 4 | spring.thymeleaf.cache=false -------------------------------------------------------------------------------- /codingce-framework/codingce-label/label-common/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=lable-common 2 | 3 | 4 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/README.md: -------------------------------------------------------------------------------- 1 | # Go Study 2 | Golang learn project 3 | 4 | # Development environment 5 | go 1.20.2 windows/amd64 6 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/src/testtwo/Shape.java: -------------------------------------------------------------------------------- 1 | package testtwo; 2 | 3 | public interface Shape { 4 | float perimeter(); 5 | } 6 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/14-golang-IM-System/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/codingce/14-golang-IM-System 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/src/cn/com/codingce/testone/Person.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.testone; 2 | 3 | public class Person { 4 | } 5 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/.idea/description.html: -------------------------------------------------------------------------------- 1 | Simple Java application that includes a class with main() method -------------------------------------------------------------------------------- /codingce-javase/codingce-stream/.idea/description.html: -------------------------------------------------------------------------------- 1 | Simple Java application that includes a class with main() method -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-06-ssm01/src/main/java/cn/com/codingce/pojo/User.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | public class User { 4 | } 5 | -------------------------------------------------------------------------------- /young-quartz/.idea/dictionaries/Administrator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-eureka-7001/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | application: 3 | name: springcloud-config-eureka-7001 -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/bin/go_build_Solution_go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-go/lesson/lesson-go/bin/go_build_Solution_go -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-05/src/main/java/cn/com/codingce/dao/StudentMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | public interface StudentMapper { 4 | } 5 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-05/src/main/java/cn/com/codingce/dao/TeacherMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | public interface TeacherMapper { 4 | } 5 | -------------------------------------------------------------------------------- /codingce-hdfsclient/src/main/java/cn/com/codince/mywritable/mr/TqCombiner.java: -------------------------------------------------------------------------------- 1 | package cn.com.codince.mywritable.mr; 2 | 3 | public class TqCombiner { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-07/src/main/java/cn/com/codingce/dao/StudentMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | public interface StudentMapper { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-08/src/main/java/cn/com/codingce/dao/StudentMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | public interface StudentMapper { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/modules_test/modules_test/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | fmt.Printf("%d", 2222) 7 | } 8 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-client-3355/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | # 用户级别的配置 2 | spring: 3 | application: 4 | name: springcloud-config-client-3355 -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-provider-dept-8001/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | application: 3 | name: springcloud-config-provider-dept-8001 -------------------------------------------------------------------------------- /codingce-spring/spring-01-ioc1/src/main/java/cn/com/codingce/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | public interface UserDao { 4 | void getUser(); 5 | } 6 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-12-myredis/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | # \u914D\u7F6Eredis 3 | spring.redis.host=127.0.0.1 4 | spring.redis.port=6379 5 | spring.redis -------------------------------------------------------------------------------- /young-quartz/target/classes/com/young/quartz/QuartzMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/classes/com/young/quartz/QuartzMain.class -------------------------------------------------------------------------------- /young-quartz/target/classes/com/young/quartz/job/DemoJob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/classes/com/young/quartz/job/DemoJob.class -------------------------------------------------------------------------------- /young-quartz/target/classes/com/young/quartz/job/RamJob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/classes/com/young/quartz/job/RamJob.class -------------------------------------------------------------------------------- /young-quartz/target/test-classes/com/young/quartz/AppTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/test-classes/com/young/quartz/AppTest.class -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/out/production/COMPUTATION/Ball.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/COMPUTATION/out/production/COMPUTATION/Ball.class -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/out/production/COMPUTATION/Body.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/COMPUTATION/out/production/COMPUTATION/Body.class -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/out/production/COMPUTATION/Cube.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/COMPUTATION/out/production/COMPUTATION/Cube.class -------------------------------------------------------------------------------- /codingce-spring/spring-01-ioc1/src/main/java/cn/com/codingce/service/UserService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | public interface UserService { 4 | void getUser(); 5 | } 6 | -------------------------------------------------------------------------------- /young-quartz/target/classes/com/young/quartz/SimpleQuartzApp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/classes/com/young/quartz/SimpleQuartzApp.class -------------------------------------------------------------------------------- /young-quartz/target/classes/com/young/quartz/job/DemoSchedule.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/classes/com/young/quartz/job/DemoSchedule.class -------------------------------------------------------------------------------- /young-quartz/target/classes/com/young/quartz/job/HelloQuartz.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/classes/com/young/quartz/job/HelloQuartz.class -------------------------------------------------------------------------------- /young-quartz/target/classes/com/young/quartz/job/TimeRemindJob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/classes/com/young/quartz/job/TimeRemindJob.class -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/out/production/COMPUTATION/MainClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/COMPUTATION/out/production/COMPUTATION/MainClass.class -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_037/out/production/CORE_C07_037/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C07_037/out/production/CORE_C07_037/Student.class -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_038/out/production/CORE_C07_038/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C07_038/out/production/CORE_C07_038/Student.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/MyOne.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/MyOne.class -------------------------------------------------------------------------------- /young-quartz/target/test-classes/com/young/quartz/job/RamJobTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/young-quartz/target/test-classes/com/young/quartz/job/RamJobTest.class -------------------------------------------------------------------------------- /codingce-framework/codingce-label/label-system/src/main/java/com/bsh/lable/system/dao/AiReptLabelsDao.java: -------------------------------------------------------------------------------- 1 | package com.bsh.lable.system.dao; 2 | 3 | public interface AiReptLabelsDao { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_007/out/production/CORE_C02_007/CodingMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C02_007/out/production/CORE_C02_007/CodingMain.class -------------------------------------------------------------------------------- /codingce-javase/CORE_C05_1030/out/production/CORE_C05_1030/Example.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C05_1030/out/production/CORE_C05_1030/Example.class -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/out/production/CORE_C06_1104/TestFive.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C06_1104/out/production/CORE_C06_1104/TestFive.class -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/out/production/CORE_C06_1104/TestFour.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C06_1104/out/production/CORE_C06_1104/TestFour.class -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/out/production/CORE_C06_1104/TestMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C06_1104/out/production/CORE_C06_1104/TestMain.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/MapTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/MapTest.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/Person.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/Person.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/SetTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/SetTest.class -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/out/production/CORE_C06_1104/TestThree.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C06_1104/out/production/CORE_C06_1104/TestThree.class -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_037/out/production/CORE_C07_037/ClassManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C07_037/out/production/CORE_C07_037/ClassManager.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/ArrayTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/ArrayTest.class -------------------------------------------------------------------------------- /codingce-es/.idea/dictionaries: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_038/out/production/CORE_C07_038/SchoolManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C07_038/out/production/CORE_C07_038/SchoolManager.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/FileExercise.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/FileExercise.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/test/TestMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/test/TestMain.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testtwo/Rou.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testtwo/Rou.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testtwo/Shape.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testtwo/Shape.class -------------------------------------------------------------------------------- /codingce-redis/.idea/dictionaries: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-sms/.idea/dictionaries: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-spring/spring-10-mybatis/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /dubbo + zookeeper/consumer-server/src/main/java/cn/com/codingce/service/TicketService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | public interface TicketService { 4 | public String getTicket(); 5 | } 6 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/14-golang-IM-System/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-go/lesson/lesson-go/src/lesson/golang_study/14-golang-IM-System/client -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/14-golang-IM-System/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-go/lesson/lesson-go/src/lesson/golang_study/14-golang-IM-System/server -------------------------------------------------------------------------------- /codingce-javase/CORE_C05_1030/out/production/CORE_C05_1030/Example$Person.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/CORE_C05_1030/out/production/CORE_C05_1030/Example$Person.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/CollectionsTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/CollectionsTest.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testone/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testone/Student.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testtwo/Square.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testtwo/Square.class -------------------------------------------------------------------------------- /codingce-rabbitmq/.idea/dictionaries: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-security/.idea/dictionaries: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/resources/i18n/login_en_US.properties: -------------------------------------------------------------------------------- 1 | login.btn=Sgin in 2 | login.password=Password 3 | login.remember=Remember me 4 | login.tip=please log in 5 | login.username=UserName -------------------------------------------------------------------------------- /codingce-springboot/springboot-09-shiro/src/main/resources/i18n/login_en_US.properties: -------------------------------------------------------------------------------- 1 | login.btn=Sgin in 2 | login.password=Password 3 | login.remember=Remember me 4 | login.tip=please log in 5 | login.username=UserName -------------------------------------------------------------------------------- /codingce-wx/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 主页 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/Serializable_Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/Serializable_Test.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testone/MainClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testone/MainClass.class -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testtwo/MainClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testtwo/MainClass.class -------------------------------------------------------------------------------- /codingce-media/codingce-WebRTC/codingce-webrtc/src/main/resources/webrtc.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-media/codingce-WebRTC/codingce-webrtc/src/main/resources/webrtc.keystore -------------------------------------------------------------------------------- /codingce-mybatisplus/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-06-mybatis/src/main/resources/i18n/login_en_US.properties: -------------------------------------------------------------------------------- 1 | login.btn=Sgin in 2 | login.password=Password 3 | login.remember=Remember me 4 | login.tip=please log in 5 | login.username=UserName -------------------------------------------------------------------------------- /dubbo + zookeeper/consumer-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8082 2 | 3 | # 服务应用名字 4 | dubbo.application.name=consumer-server 5 | # 注册中心地址 6 | dubbo.registry.address=zookeeper://127.0.0.1:2181 -------------------------------------------------------------------------------- /dubbo + zookeeper/provider-server/src/main/java/cn/com/codingce/service/TicketService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | public interface TicketService { 4 | 5 | public String getTicket(); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /codingce-es/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testthree/MainClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testthree/MainClass.class -------------------------------------------------------------------------------- /codingce-media/codingce-WebRTC/codingce-webrtc/src/main/resources/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-media/codingce-WebRTC/codingce-webrtc/src/main/resources/static/favicon.ico -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-02/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true&useUnicode=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-03/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true&useUnicode=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-04/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true&useUnicode=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-05/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true&useUnicode=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-06/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true&useUnicode=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-07/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true&useUnicode=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-08/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true&useUnicode=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-09/src/main/resources/db.properties: -------------------------------------------------------------------------------- 1 | driver=com.mysql.jdbc.Driver 2 | url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/mybatis?useSSL=true&useUnicode=true 3 | username=root 4 | password=123456 -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/i18n/login_en_US.properties: -------------------------------------------------------------------------------- 1 | login.btn=Sgin in 2 | login.password=Password 3 | login.remember=Remember me 4 | login.tip=please log in 5 | login.username=UserName -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/lesson26_公开和未公开标识符/counters/counters.go: -------------------------------------------------------------------------------- 1 | package counters 2 | 3 | // 声明了未公开的类型 4 | type alertCounter int 5 | 6 | func New(value int) alertCounter { 7 | return alertCounter(value) 8 | } 9 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testone/UnderGraduate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/Pro_Test_1115/out/production/Pro_Test_1115/testone/UnderGraduate.class -------------------------------------------------------------------------------- /codingce-redis/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-sms/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-spring/spring-06-anno/src/main/java/cn/com/codingce/service/UserService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | import org.springframework.stereotype.Service; 4 | 5 | @Service 6 | public class UserService { 7 | } 8 | -------------------------------------------------------------------------------- /young-quartz/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-mybatisplus/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-rabbitmq/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-security/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dubbo + zookeeper/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/14-golang-IM-System/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | fmt.Print("测试") 7 | server := NewServer("127.0.0.1", 8888) 8 | server.Start() 9 | } 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/resources/i18n/login.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /codingce-springboot/springboot-09-shiro/src/main/resources/i18n/login.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_004/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_005/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_004/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_005/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_007/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_011/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_026/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_041/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C03_033/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C04_002/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_037/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_038/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/codingce-stream/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-spring/spring-05-Autowired/src/main/java/cn/com/codingce/pojo/Cat.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | public class Cat { 4 | 5 | public void shout() { 6 | System.out.println("喵喵"); 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /codingce-spring/spring-05-Autowired/src/main/java/cn/com/codingce/pojo/Dog.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | public class Dog { 4 | 5 | public void shout() { 6 | System.out.println("旺旺"); 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /codingce-spring/spring-08-proxy/src/main/java/cn/com/codingce/demo3/Rent.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo3; 2 | 3 | /** 4 | * @author xzMa 5 | * 租房 6 | */ 7 | public interface Rent { 8 | 9 | public void rent(); 10 | 11 | } 12 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/resources/i18n/login_zh_CN.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/resources/templates/error/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 500 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-06-mybatis/src/main/resources/i18n/login.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0923/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C05_1030/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/src/test/TestMain.java: -------------------------------------------------------------------------------- 1 | package test; 2 | 3 | public class TestMain { 4 | public static void main(String[] args) { 5 | String s = "abcdefgh"; 6 | System.out.println(s.indexOf("cd")); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E020/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E023/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E025/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E026/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E030/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E031/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E032/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E033/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E034/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E037/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E038/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E039/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E045/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/chapter_two_1009/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-spring/spring-06-anno/src/main/java/cn/com/codingce/controller/UserController.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.controller; 2 | 3 | import org.springframework.stereotype.Controller; 4 | 5 | @Controller 6 | public class UserController { 7 | } 8 | -------------------------------------------------------------------------------- /codingce-spring/spring-06-anno/src/main/java/cn/com/codingce/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | import org.springframework.stereotype.Repository; 4 | 5 | @Repository 6 | public class UserDao { 7 | 8 | 9 | 10 | } 11 | -------------------------------------------------------------------------------- /codingce-spring/spring-08-proxy/src/main/java/cn/com/codingce/demo01/Rent.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo01; 2 | 3 | /** 4 | * @author xzMa 5 | * 租房 6 | */ 7 | public interface Rent { 8 | 9 | public void rent(); 10 | 11 | } 12 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-06-mybatis/src/main/resources/i18n/login_zh_CN.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /codingce-springboot/springboot-06-mybatis/src/main/resources/templates/error/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 500 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/i18n/login.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /codingce-springboot/springboot-09-shiro/src/main/resources/i18n/login_zh_CN.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /codingce-jdbc/mxz.txt: -------------------------------------------------------------------------------- 1 | Users(pid=1, sno=1010, sname=里斯, sage=19, saddress=河北) 2 | Users(pid=3, sno=1002, sname=里斯, sage=19, saddress=河北) 3 | Users(pid=4, sno=1003, sname=细细, sage=19, saddress=天津) 4 | Users(pid=5, sno=1099, sname=哈哈, sage=20, saddress=中国) 5 | -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-01/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 |

demo1

9 | 10 | -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-02/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 |

demo2

9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/resources/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 |

首页

9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/resources/templates/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 |

test

9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-06-mybatis/src/main/resources/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 |

首页

9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/i18n/login_zh_CN.properties: -------------------------------------------------------------------------------- 1 | login.btn=\u767B\u5F55 2 | login.password=\u5BC6\u7801 3 | login.remember=\u8BB0\u4F4F\u6211 4 | login.tip=\u8BF7\u767B\u5F55 5 | login.username=\u7528\u6237\u540D -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E023/out/production/SE_JAVA_EXP_E023/cn/campsg/java/experiment/Score.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/SE_JAVA_EXP_E023/out/production/SE_JAVA_EXP_E023/cn/campsg/java/experiment/Score.class -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/src/cn/campsg/java/experiment/entity/AbstractSinger.java: -------------------------------------------------------------------------------- 1 | package cn.campsg.java.experiment.entity; 2 | 3 | public abstract class AbstractSinger { 4 | public abstract void sing(); 5 | public void introduce() {} 6 | } 7 | -------------------------------------------------------------------------------- /codingce-javase/codingce-stream/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-spring/spring-01-ioc1/src/main/java/cn/com/codingce/dao/UserDaoImpl.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | public class UserDaoImpl implements UserDao { 4 | public void getUser() { 5 | System.out.println("默认获取用户数据"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-06-mybatis/src/main/resources/templates/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 |

test

9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/error/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 500 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-06-ssm01/src/main/resources/database.properties: -------------------------------------------------------------------------------- 1 | jdbc.driver=com.mysql.cj.jdbc.Driver 2 | jdbc.url=jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/ssmbuild?useSSL=true&useUnicode=true 3 | jdbc.username=root 4 | jdbc.password=123456 -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_004/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_005/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_004/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_005/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_007/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_011/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_026/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C03_033/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C04_002/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_037/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_038/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E023/out/production/SE_JAVA_EXP_E023/cn/campsg/java/experiment/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/SE_JAVA_EXP_E023/out/production/SE_JAVA_EXP_E023/cn/campsg/java/experiment/Student.class -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-09-shiro/src/main/resources/templates/user/add.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | add 6 | 7 | 8 |

add

9 | 10 | 11 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0921/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0923/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C05_1030/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E020/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E023/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E023/out/production/SE_JAVA_EXP_E023/cn/campsg/java/experiment/MainClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/SE_JAVA_EXP_E023/out/production/SE_JAVA_EXP_E023/cn/campsg/java/experiment/MainClass.class -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E025/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E032/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E033/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E034/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/out/production/SE_JAVA_EXP_E035P/cn/campsg/java/experiment/MainClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/SE_JAVA_EXP_E035P/out/production/SE_JAVA_EXP_E035P/cn/campsg/java/experiment/MainClass.class -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E037/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E038/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E039/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E039/out/production/SE_JAVA_EXP_E039/cn/campsg/java/experiment/MainClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/SE_JAVA_EXP_E039/out/production/SE_JAVA_EXP_E039/cn/campsg/java/experiment/MainClass.class -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E039/out/production/SE_JAVA_EXP_E039/cn/campsg/java/experiment/QueueCaller.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/SE_JAVA_EXP_E039/out/production/SE_JAVA_EXP_E039/cn/campsg/java/experiment/QueueCaller.class -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E045/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/chapter_two_1009/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-03/src/main/java/cn/com/codingce/dao/UserMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | import cn.com.codingce.pojo.User; 4 | 5 | public interface UserMapper { 6 | 7 | //根据ID查询用户 8 | User getUserById(int id); 9 | 10 | } 11 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level1/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level1-1 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level1/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level1-2 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level1/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level1-3 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level2/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level2-1 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level2/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level2-2 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level2/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level2-3 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level3/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level3-1 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level3/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level3-2 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/main/resources/templates/views/level3/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | level3-3 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/5-init/lib1/lib1.go: -------------------------------------------------------------------------------- 1 | package lib1 2 | 3 | import "fmt" 4 | 5 | //当前lib1包提供的API 6 | func Lib1Test() { 7 | fmt.Println("lib1Test()...") 8 | } 9 | 10 | func init() { 11 | fmt.Println("lib1. init() ...") 12 | } 13 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/5-init/lib2/lib2.go: -------------------------------------------------------------------------------- 1 | package lib2 2 | 3 | import "fmt" 4 | 5 | //当前lib1包提供的API 6 | func Lib2Test() { 7 | fmt.Println("lib2Test()...") 8 | } 9 | 10 | func init() { 11 | fmt.Println("lib2. init() ...") 12 | } 13 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-05/src/main/java/cn/com/codingce/pojo/Teacher.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.Data; 4 | 5 | @Data //GET,SET,ToString,有参,无参构造 6 | public class Teacher { 7 | private int id; 8 | private String name; 9 | } 10 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-06/src/main/java/cn/com/codingce/pojo/Teacher.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.Data; 4 | 5 | @Data //GET,SET,ToString,有参,无参构造 6 | public class Teacher { 7 | private int id; 8 | private String name; 9 | } 10 | -------------------------------------------------------------------------------- /codingce-spring/spring-01-ioc1/src/main/java/cn/com/codingce/dao/UserDaoMysqlImpl.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | public class UserDaoMysqlImpl implements UserDao { 4 | public void getUser() { 5 | System.out.println("Mysql获取用户数据"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /codingce-spring/spring-01-ioc1/src/main/java/cn/com/codingce/dao/UserDaoOracleImpl.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | public class UserDaoOracleImpl implements UserDao { 4 | public void getUser() { 5 | System.out.println("Oracle获取数据"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /codingce-spring/spring-07-appconfig/src/main/java/cn/com/codingce/config/ZeConfig2.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.config; 2 | 3 | import org.springframework.context.annotation.Configuration; 4 | 5 | @Configuration 6 | public class ZeConfig2 { 7 | 8 | 9 | 10 | } 11 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-client-3355/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- 1 | # 项目系统级别的配置 2 | spring: 3 | cloud: 4 | config: 5 | uri: http://localhost:3344 6 | name: config-client # 需要从git上读取的资源名称, 不需要后缀 7 | profile: test 8 | label: master -------------------------------------------------------------------------------- /codingce-hbase/src/main/java/cn/com/codingce/hbase/conf/HbaseConfig.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.hbase.conf; 2 | 3 | public interface HbaseConfig { 4 | //zookeeper服务器主机名 5 | String QUORUM = "139.9.34.48"; 6 | //zookeeper端口号 7 | String CLIENT_PORT = "2181"; 8 | } 9 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-09-shiro/src/main/resources/templates/user/update.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | update 6 | 7 | 8 |

update

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/out/production/SE_JAVA_EXP_E035P/cn/campsg/java/experiment/entity/PopSinger.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/SE_JAVA_EXP_E035P/out/production/SE_JAVA_EXP_E035P/cn/campsg/java/experiment/entity/PopSinger.class -------------------------------------------------------------------------------- /codingce-redis/redis-02-springboot/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # SpringBoot 所有的配置类, 都有一个自动配置类 RedisAutoConfiguration 2 | # 自动配置类都会绑定一个 peoperties 配置文件 RedisProperties 3 | 4 | spring.redis.host=127.0.0.1 5 | spring.redis.port=6379 6 | #spring.redis.lettuce.pool.max-active= -------------------------------------------------------------------------------- /codingce-spring/spring-09-aop/src/main/java/cn/com/codingce/service/UserService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | public interface UserService { 4 | public void add(); 5 | public void delete(); 6 | public void update(); 7 | public void select(); 8 | } 9 | -------------------------------------------------------------------------------- /dubbo + zookeeper/provider-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8081 2 | 3 | # 服务应用名字 4 | dubbo.application.name=provider-server 5 | # 注册中心地址 6 | dubbo.registry.address=zookeeper://127.0.0.1:2181 7 | # 哪些服务要被注册 8 | dubbo.scan.base-packages=cn.com.codingce.service -------------------------------------------------------------------------------- /codingce-javase/codingce-stream/src/README.md: -------------------------------------------------------------------------------- 1 | ### 注意 2 | 本项目根据[英文版](https://winterbe.com/posts/2014/07/31/java8-stream-tutorial-examples/)优化, 3 | 希望能够帮助此时迷茫的你,流式操作在实际项目操作中非常见,极大的提高开发效率。同时也是Java程序员的必修课。 4 | 如有问题欢迎Issues 或者直接邮箱联系 2460798168@qq.com 梯子不常用就不写谷歌邮箱了。 5 | 有理解错误和不到位的点也希望各位指出,一起学习一起成长. -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/modules_test/modules_test/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/codingce/modules_test 2 | 3 | go 1.16 4 | 5 | // require github.com/aceld/zinx v1.0.0 // indirect 6 | 7 | // replace zinx v0.0.0-20200306023939bc416543ae24 => zinx v0.0.0-20200221135252-8a8954e75100 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/out/production/SE_JAVA_EXP_E035P/cn/campsg/java/experiment/entity/AbstractSinger.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzMhehe/codingce-java/HEAD/codingce-javase/SE_JAVA_EXP_E035P/out/production/SE_JAVA_EXP_E035P/cn/campsg/java/experiment/entity/AbstractSinger.class -------------------------------------------------------------------------------- /codingce-spring/spring-08-proxy/src/main/java/cn/com/codingce/demo2/UserService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo2; 2 | 3 | public interface UserService { 4 | 5 | public void add(); 6 | public void delete(); 7 | public void update(); 8 | public void query(); 9 | } 10 | -------------------------------------------------------------------------------- /codingce-spring/spring-08-proxy/src/main/java/cn/com/codingce/demo4/UserService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo4; 2 | 3 | public interface UserService { 4 | 5 | public void add(); 6 | public void delete(); 7 | public void update(); 8 | public void query(); 9 | } 10 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-11-mytask/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.mail.username=2460798168@qq.com 2 | spring.mail.password=tsxvfmrhykdawdaw 3 | spring.mail.host=smtp.qq.com 4 | 5 | # \u5F00\u542F\u52A0\u5BC6\u9A8C\u8BC1 6 | spring.mail.properties.mail.smtl.ssl.enable=true -------------------------------------------------------------------------------- /codingce-rabbitmq/rabbitmq-02-springboot/src/main/java/cn/com/codingce/dto/Tag.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dto; 2 | 3 | import lombok.Data; 4 | 5 | @Data 6 | public class Tag { 7 | 8 | private String tagId; 9 | private String tagName; 10 | private String userId; 11 | 12 | } -------------------------------------------------------------------------------- /codingce-hbase/src/main/resources/hdfs-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | dfs.replication 6 | 1 7 | 8 | 9 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/src/MyOne.java: -------------------------------------------------------------------------------- 1 | public class MyOne { 2 | public static void main(String[] args) { 3 | 4 | int a = 100, b = 200, sum, sd; 5 | sum = a + b; 6 | sd = a / b; 7 | System.out.println("sum=" + sum +"," + "sd=" + sd); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-07/src/main/java/cn/com/codingce/pojo/Student.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.Data; 4 | 5 | @Data 6 | public class Student { 7 | private int id; 8 | private String name; 9 | //多个学生可以是同一个老师,即多对一 10 | private int tid; 11 | } 12 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-08/src/main/java/cn/com/codingce/pojo/Student.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.Data; 4 | 5 | @Data 6 | public class Student { 7 | private int id; 8 | private String name; 9 | //多个学生可以是同一个老师,即多对一 10 | private int tid; 11 | } 12 | -------------------------------------------------------------------------------- /codingce-security/src/main/java/cn/com/codingce/mapper/xml/UserMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-spark/src/main/resources/hdfs-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | dfs.replication 6 | 1 7 | 8 | 9 | -------------------------------------------------------------------------------- /codingce-spring/spring-10-mybatis/src/main/java/cn/com/codingce/mapper/UserMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.mapper; 2 | 3 | import cn.com.codingce.pojo.User; 4 | 5 | import java.util.List; 6 | 7 | public interface UserMapper { 8 | 9 | public List selectUser(); 10 | 11 | } 12 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/lesson26_公开和未公开标识符/entities/entities.go: -------------------------------------------------------------------------------- 1 | package entities 2 | 3 | // User 在程序里定义一个用户类型 4 | type user struct { 5 | Name string 6 | Email string 7 | } 8 | 9 | // Admin 在程序里定义了管理员 10 | type Admin struct { 11 | user // 嵌入的类型是未公开的 12 | Rights int 13 | } 14 | -------------------------------------------------------------------------------- /codingce-hdfsclient/src/main/resources/hdfs-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | dfs.replication 6 | 1 7 | 8 | 9 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-05/src/main/java/cn/com/codingce/pojo/Student.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.Data; 4 | 5 | @Data 6 | public class Student { 7 | private int id; 8 | private String name; 9 | //多个学生可以是同一个老师,即多对一 10 | private Teacher teacher; 11 | } 12 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-06/src/main/java/cn/com/codingce/pojo/Student.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.Data; 4 | 5 | @Data 6 | public class Student { 7 | private int id; 8 | private String name; 9 | //多个学生可以是同一个老师,即多对一 10 | private Teacher teacher; 11 | } 12 | -------------------------------------------------------------------------------- /codingce-spring/spring-08-proxy/src/main/java/cn/com/codingce/demo01/Host.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo01; 2 | 3 | /** 4 | * @author xzMa 5 | * 房东 6 | * 7 | */ 8 | public class Host implements Rent { 9 | public void rent() { 10 | System.out.println("房东要出租房子"); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /codingce-spring/spring-08-proxy/src/main/java/cn/com/codingce/demo3/Host.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo3; 2 | 3 | /** 4 | * @author xzMa 5 | * 房东 6 | * 7 | */ 8 | public class Host implements Rent { 9 | public void rent() { 10 | System.out.println("房东要出租房子"); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-02-myconfig/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8081 3 | spring: 4 | profiles: 5 | active: dev 6 | --- 7 | server: 8 | port: 8082 9 | spring: 10 | profiles: dev 11 | --- 12 | server: 13 | port: 8083 14 | spring: 15 | profiles: test 16 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/src/cn/com/codingce/testmethod/Animal.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.testmethod; 2 | 3 | /** 4 | * @Author: Jiangjun 5 | * @Date: 2019/10/4 10:54 6 | */ 7 | public class Animal { 8 | public void sleep(){ 9 | System.out.println("动物睡觉共有"); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /codingce-security/src/main/java/cn/com/codingce/mapper/xml/UserRoleMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/7-defer/mydefer.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | //写入defer关键字 7 | defer fmt.Println("main end1") 8 | defer fmt.Println("main end2") 9 | 10 | fmt.Println("main::hello go 1") 11 | fmt.Println("main::hello go 2") 12 | } 13 | -------------------------------------------------------------------------------- /codingce-rabbitmq/rabbitmq-02-springboot/src/main/java/cn/com/codingce/controller/CustomerController.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.controller; 2 | 3 | import org.springframework.stereotype.Controller; 4 | 5 | /** 6 | * @author mxz 7 | */ 8 | @Controller 9 | public class CustomerController { 10 | 11 | } 12 | -------------------------------------------------------------------------------- /codingce-sms/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-sms/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/src/Cube.java: -------------------------------------------------------------------------------- 1 | public class Cube implements Body { 2 | private float a; 3 | 4 | public Cube(float a) { 5 | this.a = a; 6 | } 7 | 8 | public Cube() { 9 | } 10 | 11 | @Override 12 | public float area() { 13 | return 6 * a * a; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E034/src/cn/campsg/java/experiment/SeekJob.java: -------------------------------------------------------------------------------- 1 | package cn.campsg.java.experiment; 2 | 3 | /** 4 | * @author xzMa 5 | */ 6 | public interface SeekJob { 7 | 8 | float SEEKER_AVERAGE_SCORE = 85.0f; 9 | 10 | float getSeekerAverage(); 11 | 12 | String getName(); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-06/src/main/resources/cn/com/codingce/dao/TeacherMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-security/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /codingce-sms/src/main/java/cn/com/codingce/service/SendSms.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * @author mxz 7 | */ 8 | public interface SendSms { 9 | 10 | public boolean send(String phonNum, String templateCode, Map code); 11 | 12 | } 13 | 14 | -------------------------------------------------------------------------------- /hadoop-redis/src/main/java/cn/com/codingce/domain/FileAttribute.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.domain; 2 | 3 | import lombok.Data; 4 | 5 | //描述上传文件的信息 6 | @Data 7 | public class FileAttribute { 8 | 9 | private String name;//文件名称 10 | private String size;//大小 11 | private String date;//上传的日期 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_004/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_004/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_005/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_004/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_005/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_007/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_011/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_026/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_041/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_041/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0921/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0923/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C03_033/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C03_033/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C04_002/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C05_1030/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_037/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_037/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_038/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C07_038/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-06/src/main/java/cn/com/codingce/dao/StudentMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | import cn.com.codingce.pojo.Student; 4 | 5 | import java.util.List; 6 | 7 | public interface StudentMapper { 8 | 9 | List getStudent(); 10 | 11 | List getStudent2(); 12 | } 13 | -------------------------------------------------------------------------------- /codingce-mybatisplus/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /codingce-security/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_004/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_005/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_007/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_011/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_026/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0921/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_0923/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C04_002/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C05_1030/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E020/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E023/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E025/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E026/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E030/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E031/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E032/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E033/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E034/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E037/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E038/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E039/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E045/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/chapter_two_1009/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/src/cn/com/codingce/testannotation/Animal.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.testannotation; 2 | 3 | /** 4 | * @Author: Jiangjun 5 | * @Date: 2019/10/4 15:11 6 | */ 7 | public class Animal { 8 | 9 | public void eat(){ 10 | System.out.println("animal类中的吃饭方法"); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-07/src/main/resources/cn/com/codingce/dao/StudentMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-08/src/main/resources/cn/com/codingce/dao/StudentMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-framework/codingce-label/label-system/src/main/resources/mapper/lable/AiReptLabelsDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/src/Ball.java: -------------------------------------------------------------------------------- 1 | public class Ball implements Body { 2 | private float r; 3 | 4 | public Ball() { 5 | } 6 | 7 | public Ball(float r) { 8 | this.r = r; 9 | } 10 | 11 | @Override 12 | public float area() { 13 | return (float) (4 * 3.14 * r * r); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /codingce-mybatisplus/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | datasource: 3 | username: root 4 | password: 123456 5 | #?serverTimezone=UTC解决时区的报错 6 | url: jdbc:mysql://localhost:3306/springboot?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8 7 | driver-class-name: com.mysql.cj.jdbc.Driver -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-eureka-7001/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- 1 | # 项目系统级别的配置 2 | spring: 3 | cloud: 4 | config: 5 | uri: http://localhost:3344 #注意: 必须先启动 3344 本地项目 导包 spring-cloud-starter-eureka-server 不然会走 8080 6 | name: config-eureka # 需要从git上读取的资源名称, 不需要后缀 7 | profile: dev 8 | label: master -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E020/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E023/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E025/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E026/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E030/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E031/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E032/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E033/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E034/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E037/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E038/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E039/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E045/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/chapter_two_1009/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-provider-dept-8001/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- 1 | # 项目系统级别的配置 2 | spring: 3 | cloud: 4 | config: 5 | uri: http://localhost:3344 #注意: 必须先启动 3344 本地项目 导包 spring-cloud-starter-eureka-server 不然会走 8080 6 | name: config-dept # 需要从git上读取的资源名称, 不需要后缀 7 | profile: dev 8 | label: master -------------------------------------------------------------------------------- /codingce-javase/codingce-stream/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-07/src/main/java/cn/com/codingce/pojo/Teacher.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.Data; 4 | 5 | import java.util.List; 6 | 7 | @Data //GET,SET,ToString,有参,无参构造 8 | public class Teacher { 9 | private int id; 10 | private String name; 11 | private List studentList; 12 | } 13 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-08/src/main/java/cn/com/codingce/pojo/Teacher.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.Data; 4 | 5 | import java.util.List; 6 | 7 | @Data //GET,SET,ToString,有参,无参构造 8 | public class Teacher { 9 | private int id; 10 | private String name; 11 | private List studentList; 12 | } 13 | -------------------------------------------------------------------------------- /hadoop-redis/src/test/java/cn/com/codingce/HadoopRedisApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class HadoopRedisApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_005/src/CodeMain.java: -------------------------------------------------------------------------------- 1 | public class CodeMain { 2 | public static void main(String[] args) { 3 | int defaultNum = 10000; 4 | for (int i = 0; i < 10; i++) { 5 | defaultNum = defaultNum / 2; 6 | System.out.println("第" + (i + 1) + "次反弹, 高度是: " + defaultNum); 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_005/src/CodeMain.java: -------------------------------------------------------------------------------- 1 | public class CodeMain { 2 | public static void main(String[] args) { 3 | int defaultNum = 10000; 4 | for (int i = 0; i < 10; i++) { 5 | defaultNum = defaultNum / 2; 6 | System.out.println("第" + (i + 1) + "次反弹, 高度是: " + defaultNum); 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /codingce-rabbitmq/rabbitmq-02-springboot/src/main/java/cn/com/codingce/common/lang/CommonMQMsg.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.common.lang; 2 | 3 | import lombok.Data; 4 | 5 | import java.io.Serializable; 6 | 7 | @Data 8 | public class CommonMQMsg implements Serializable { 9 | 10 | private String type; 11 | 12 | private String msg; 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-consumer-dept/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 80 3 | 4 | 5 | # Eureka配置 6 | eureka: 7 | client: 8 | register-with-eureka: false # 不向Eureka中注册自己 9 | service-url: 10 | defaultZone: http://eureka7002.com:7002/eureka/, http://eureka7002.com:7002/eureka/, http://eureka7003.com:7003/eureka/ -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/5-init/main.go: -------------------------------------------------------------------------------- 1 | //package main 2 | // 3 | //import ( 4 | // "lesson/golang_study/5-init/lib1" 5 | // "lesson/golang_study/5-init/lib2" 6 | // mylib2 "lesson/golang_study/5-init/lib2" 7 | //) 8 | // 9 | //func main() { 10 | // Lib1Test() 11 | //} 12 | 13 | package main 14 | 15 | func main() { 16 | 17 | } 18 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E031/src/cn/campsg/java/experiment/MainClass.java: -------------------------------------------------------------------------------- 1 | package cn.campsg.java.experiment; 2 | 3 | import cn.campsg.java.experiment.entity.Feeder; 4 | 5 | public class MainClass { 6 | public static void main(String[] args) { 7 | Feeder s = new Feeder(); 8 | s.feed(); 9 | s.feed("华南虎"); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/test/java/cn/com/codingce/WebApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class WebApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-04-myjdbc/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | datasource: 3 | username: root 4 | password: 123456 5 | #?serverTimezone=UTC解决时区的报错 6 | url: jdbc:mysql://cdb-q9atzwrq.bj.tencentcdb.com:10167/springboot?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8 7 | driver-class-name: com.mysql.cj.jdbc.Driver -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E026/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E038/src/cn/campsg/java/experiment/exception/RoseException.java: -------------------------------------------------------------------------------- 1 | package cn.campsg.java.experiment.exception; 2 | 3 | /** 4 | * @author xzMa 5 | */ 6 | public class RoseException extends Exception { 7 | public RoseException() { 8 | } 9 | 10 | public RoseException(String msg) { 11 | super(msg); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /codingce-rabbitmq/rabbitmq-02-springboot/src/main/java/cn/com/codingce/dto/MessageObject.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dto; 2 | 3 | public class MessageObject { 4 | 5 | private String code; 6 | private String subCode; 7 | private String version; 8 | private int deliverState; 9 | private String idCard; 10 | private Object data; 11 | 12 | } -------------------------------------------------------------------------------- /codingce-springboot/springboot-09-shiro/src/main/java/cn/com/codingce/service/UserService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | import cn.com.codingce.pojo.User; 4 | 5 | import java.util.List; 6 | 7 | public interface UserService { 8 | 9 | public List queryUserList(); 10 | 11 | public User queryUserByName(String name); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-hdfsclient/src/main/java/cn/com/codince/mywritable/mr/tq: -------------------------------------------------------------------------------- 1 | 1949-10-01 14:21:02 34c 2 | 1949-10-01 19:21:02 38c 3 | 1949-10-02 14:01:02 36c 4 | 1950-01-01 11:21:02 32c 5 | 1950-10-01 12:21:02 37c 6 | 1951-12-01 12:21:02 23c 7 | 1950-10-02 12:21:02 41c 8 | 1950-10-03 12:21:02 27c 9 | 1951-07-01 12:21:02 45c 10 | 1951-07-02 12:21:02 46c 11 | 1951-07-03 12:21:03 47c -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_004/src/com/oraclesdp/csg/annotation/ZjxMain.java: -------------------------------------------------------------------------------- 1 | package com.oraclesdp.csg.annotation; 2 | 3 | public class ZjxMain { 4 | public static void main(String[] args) { 5 | System.out.println("单行注释"); //单行注释 6 | System.out.println("块注释");/* 注释内容(可多行) */ 7 | /* 8 | 注释内容(可多行) 9 | */ 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /dubbo + zookeeper/provider-server/src/test/java/cn/com/codingce/ProviderServerApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class ProviderServerApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-spring/spring-11-transaction/src/main/java/cn/com/codingce/mapper/UserMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.mapper; 2 | 3 | import cn.com.codingce.pojo.User; 4 | 5 | import java.util.List; 6 | 7 | public interface UserMapper { 8 | public List selectUser(); 9 | 10 | public int addUser(User user); 11 | 12 | public int deleteUser(int id); 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-02-myconfig/src/test/java/cn/com/codingce/MyconfigApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class MyconfigApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/resources/templates/test2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 掌上编程 6 | 7 | 8 |

测试页面

9 | 10 | 11 |
12 | 13 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-06-mybatis/src/main/resources/templates/test2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 掌上编程 6 | 7 | 8 |

测试页面

9 | 10 | 11 |
12 | 13 | -------------------------------------------------------------------------------- /codingce-rabbitmq/rabbitmq-02-springboot/src/main/java/cn/com/codingce/common/lang/ResultInterface.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.common.lang; 2 | 3 | /** 4 | * ResultInterface 5 | * 6 | * @author ma 7 | */ 8 | public interface ResultInterface { 9 | 10 | /** 11 | * resCode 12 | * 13 | * @return resCode 14 | */ 15 | String Fmt(); 16 | 17 | } 18 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-10-mysaggger/src/test/java/cn/com/codingce/MysagggerApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class MysagggerApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-websocket/src/test/java/cn/com/codingce/websocket/CodingceDemoApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.websocket; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class CodingceDemoApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/1-firstGolang/hello.go: -------------------------------------------------------------------------------- 1 | package main //程序的包名 2 | 3 | /* 4 | import "fmt" 5 | import "time" 6 | */ 7 | import ( 8 | "fmt" 9 | "time" 10 | ) 11 | 12 | //main函数 13 | func main() { //函数的{ 一定是 和函数名在同一行的,否则编译错误 14 | //golang中的表达式,加";", 和不加 都可以,建议是不加 15 | fmt.Println(" hello Go!") 16 | 17 | time.Sleep(1 * time.Second) 18 | } 19 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-07-springsecurity/src/test/java/cn/com/codingce/MyspringsecurityApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.junit.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class MyspringsecurityApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/11-reflect/test4_reflect.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "reflect" 6 | ) 7 | 8 | func reflectNum(arg interface{}) { 9 | fmt.Println("type : ", reflect.TypeOf(arg)) 10 | fmt.Println("value : ", reflect.ValueOf(arg)) 11 | } 12 | 13 | func main() { 14 | var num float64 = 1.2345 15 | 16 | reflectNum(num) 17 | } 18 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/11-reflect/test1_pair.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | 7 | var a string 8 | //pair 9 | a = "aceld" 10 | 11 | //pair 12 | var allType interface{} 13 | allType = a 14 | 15 | str, _ := allType.(string) 16 | 17 | fmt.Println(str) 18 | } 19 | -------------------------------------------------------------------------------- /codingce-security/src/main/java/cn/com/codingce/mapper/UserMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.mapper; 2 | 3 | import cn.com.codingce.pojo.User; 4 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 5 | 6 | /** 7 | *

8 | * Mapper 接口 9 | *

10 | * 11 | * @author mxz 12 | * @since 2021-01-01 13 | */ 14 | public interface UserMapper extends BaseMapper { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /codingce-security/src/main/java/cn/com/codingce/service/UserService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | import cn.com.codingce.pojo.User; 4 | import com.baomidou.mybatisplus.extension.service.IService; 5 | 6 | /** 7 | *

8 | * 服务实现类 9 | *

10 | * 11 | * @author mxz 12 | * @since 2021-01-01 13 | */ 14 | public interface UserService extends IService { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /codingce-security/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 首页-全栈自学社区 7 | 8 | 9 | 10 |
11 |

主页

12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /codingce-spring/spring-09-aop/src/main/java/cn/com/codingce/diy/DiyPointCut.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.diy; 2 | 3 | public class DiyPointCut { 4 | 5 | public void before() { 6 | System.out.println("================方法执行前================"); 7 | } 8 | 9 | public void after() { 10 | System.out.println("================方法执行后================"); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/src/cn/campsg/java/experiment/entity/PopSinger.java: -------------------------------------------------------------------------------- 1 | package cn.campsg.java.experiment.entity; 2 | 3 | public class PopSinger extends AbstractSinger { 4 | @Override 5 | public void introduce() { 6 | System.out.println("Hello,我是歌手。"); 7 | } 8 | @Override 9 | public void sing() { 10 | System.out.println("我是唱流行乐的。"); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /codingce-media/codingce-WebRTC/codingce-webrtc/src/test/java/cn/com/codingce/webrtc/CodingceWebrtcApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.webrtc; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class CodingceWebrtcApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/src/testone/MainClass.java: -------------------------------------------------------------------------------- 1 | package testone; 2 | 3 | public class MainClass { 4 | public static void main(String[] args) { 5 | Student student = new Student("张三", 18); 6 | System.out.println(student.show()); 7 | UnderGraduate underGraduate = new UnderGraduate("李四", 21, "学士学位"); 8 | System.out.println(underGraduate.show()); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /codingce-jdbc/src/main/java/cn/com/codingce/entity/Teacher.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.entity; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @AllArgsConstructor 9 | @NoArgsConstructor 10 | public class Teacher { 11 | 12 | private int pid; 13 | 14 | private String tname; 15 | 16 | private String tpwd; 17 | 18 | } 19 | -------------------------------------------------------------------------------- /codingce-spring/spring-08-proxy/src/main/java/cn/com/codingce/demo01/Client.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo01; 2 | 3 | public class Client { 4 | 5 | public static void main(String[] args) { 6 | Host host = new Host(); 7 | host.rent(); 8 | //代理模式 中介帮房东租房子 但是呢 代理一般都有一些附属操作 9 | Proxy proxy = new Proxy(host); 10 | proxy.rent(); 11 | 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-05-json/web/WEB-INF/test.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/5 5 | Time: 15:28 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-09-file/web/WEB-INF/jsp.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/8 5 | Time: 15:01 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-framework/codingce-label/label-api/src/test/java/com/bsh/lable/admin/LableAdminApplicationTests.java: -------------------------------------------------------------------------------- 1 | //package com.bsh.lable.admin; 2 | // 3 | //import org.junit.jupiter.api.Test; 4 | //import org.springframework.boot.test.context.SpringBootTest; 5 | // 6 | //@SpringBootTest 7 | //class LableAdminApplicationTests { 8 | // 9 | // @Test 10 | // void contextLoads() { 11 | // } 12 | // 13 | //} 14 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E035P/src/cn/campsg/java/experiment/MainClass.java: -------------------------------------------------------------------------------- 1 | package cn.campsg.java.experiment; 2 | 3 | import cn.campsg.java.experiment.entity.PopSinger; 4 | 5 | /** 6 | * @author zjx 7 | */ 8 | public class MainClass { 9 | public static void main(String[] args) { 10 | PopSinger haha = new PopSinger(); 11 | haha.introduce(); 12 | haha.sing(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/src/cn/com/codingce/testconstructor/Person.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.testconstructor; 2 | 3 | /** 4 | * @Author: Jiangjun 5 | * @Date: 2019/10/4 11:29 6 | */ 7 | public class Person { 8 | 9 | public Person(){ 10 | System.out.println("无参数构造方法"); 11 | } 12 | 13 | public Person(String s){ 14 | System.out.println("我是有参数构造方法"); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-06/src/main/java/cn/com/codingce/dao/TeacherMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | import cn.com.codingce.pojo.Teacher; 4 | import org.apache.ibatis.annotations.Param; 5 | import org.apache.ibatis.annotations.Select; 6 | 7 | public interface TeacherMapper { 8 | @Select("select * from teacher where id = #{tid}") 9 | Teacher getTeacher(@Param("tid") int id); 10 | } 11 | -------------------------------------------------------------------------------- /codingce-security/src/main/java/cn/com/codingce/mapper/UserRoleMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.mapper; 2 | 3 | import cn.com.codingce.pojo.UserRole; 4 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 5 | 6 | /** 7 | *

8 | * Mapper 接口 9 | *

10 | * 11 | * @author mxz 12 | * @since 2021-01-01 13 | */ 14 | public interface UserRoleMapper extends BaseMapper { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /codingce-security/src/main/java/cn/com/codingce/service/UserRoleService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.service; 2 | 3 | import cn.com.codingce.pojo.UserRole; 4 | import com.baomidou.mybatisplus.extension.service.IService; 5 | 6 | /** 7 | *

8 | * 服务实现类 9 | *

10 | * 11 | * @author mxz 12 | * @since 2021-01-01 13 | */ 14 | public interface UserRoleService extends IService { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-10-mysaggger/src/main/java/cn/com/codingce/pojo/User.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import io.swagger.annotations.ApiModelProperty; 5 | 6 | @ApiModel 7 | public class User { 8 | 9 | @ApiModelProperty("用户名") 10 | private String username; 11 | @ApiModelProperty("密码") 12 | private String password; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-05-json/web/WEB-INF/jsp/test.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/5 5 | Time: 15:28 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-07-ajax/web/WEB-INF/jsp/hello.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/6 5 | Time: 14:41 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-es/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_005/src/com/oraclesdp/csg/TestMain.java: -------------------------------------------------------------------------------- 1 | package com.oraclesdp.csg; 2 | 3 | public class TestMain { 4 | public static void main(String[] args) { 5 | /** 6 | * 这是应用程序的主入口函数 7 | */ 8 | 9 | } 10 | 11 | /** 12 | * @param i i.codingce.com.cn 13 | */ 14 | public static void testOne(int i) { 15 | System.out.println(i); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-01/src/main/java/cn/com/codince/NginxApp.java: -------------------------------------------------------------------------------- 1 | package cn.com.codince; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class NginxApp { 8 | public static void main(String[] args) { 9 | SpringApplication.run(NginxApp.class, args); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-02/src/main/java/cn/com/codince/NginxApp.java: -------------------------------------------------------------------------------- 1 | package cn.com.codince; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class NginxApp { 8 | public static void main(String[] args) { 9 | SpringApplication.run(NginxApp.class, args); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-01-servlet/web/WEB-INF/jsp/test.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/2 5 | Time: 9:22 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | ${msg} 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-01-servlet/web/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/2 5 | Time: 9:13 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | $Title$ 12 | 13 | 14 | $END$ 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-04-controller/web/WEB-INF/jsp/hello.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/4 5 | Time: 12:38 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-05-json/web/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/4 5 | Time: 18:59 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | $Title$ 12 | 13 | 14 | $END$ 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-chatgpt/codingce-gpt/src/test/java/cn/com/codingce/demo/CodingceDemoApplicationTests.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo; 2 | 3 | import lombok.extern.slf4j.Slf4j; 4 | import org.junit.jupiter.api.Test; 5 | import org.springframework.boot.test.context.SpringBootTest; 6 | 7 | @SpringBootTest 8 | @Slf4j 9 | class CodingceDemoApplicationTests { 10 | 11 | @Test 12 | void contextLoads() { 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C06_1104/src/TestThree.java: -------------------------------------------------------------------------------- 1 | public class TestThree { 2 | public static void main(String[] args) { 3 | try{ 4 | Runtime run = Runtime.getRuntime(); 5 | run.exec("C:\\Program Files (x86)\\Microsoft Office\\root\\Office16\\WINWORD.EXE f:\\test.docx"); 6 | }catch(Exception e){ 7 | System.out.println(e.getMessage()); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /codingce-javase/codingce-stream/src/cn/com/codingce/entity/Inner.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.entity; 2 | 3 | /** 4 | * 高度分层的结构 5 | * 6 | * @author 2460798168@qq.com 7 | * @date 2019/11/11 13:08 8 | */ 9 | public class Inner { 10 | String foo; 11 | 12 | public String getFoo() { 13 | return foo; 14 | } 15 | 16 | public void setFoo(String foo) { 17 | this.foo = foo; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-09/src/main/java/cn/com/codingce/dao/UserMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | import cn.com.codingce.pojo.User; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | import java.util.List; 7 | 8 | public interface UserMapper { 9 | List getUsers(); 10 | 11 | //根据id查询用户 12 | User queryUserById(@Param("id") int id); 13 | 14 | int updateUser(User user); 15 | } 16 | -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-01/src/main/java/cn/com/codince/controller/IndexController.java: -------------------------------------------------------------------------------- 1 | package cn.com.codince.controller; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.web.bind.annotation.GetMapping; 5 | 6 | @Controller 7 | public class IndexController { 8 | 9 | 10 | @GetMapping("/") 11 | public String index() { 12 | return "index"; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /codingce-nginx/codingce-nginx-02/src/main/java/cn/com/codince/controller/IndexController.java: -------------------------------------------------------------------------------- 1 | package cn.com.codince.controller; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.web.bind.annotation.GetMapping; 5 | 6 | @Controller 7 | public class IndexController { 8 | 9 | 10 | @GetMapping("/") 11 | public String index() { 12 | return "index"; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /codingce-redis/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-spring/spring-10-mybatis/src/main/java/cn/com/codingce/mapper/UserMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-02-hellomvc/web/WEB-INF/jsp/hello.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/2 5 | Time: 11:34 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | ${msg} 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-02-hellomvc/web/WEB-INF/jsp/test.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/3 5 | Time: 10:20 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | ${msg} 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-02-hellomvc/web/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/2 5 | Time: 10:29 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | $Title$ 12 | 13 | 14 | $END$ 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-03-annotation/web/WEB-INF/jsp/hello.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/3 5 | Time: 14:47 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | ${msg} 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-03-annotation/web/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/3 5 | Time: 14:15 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | $Title$ 12 | 13 | 14 | $END$ 15 | 16 | 17 | -------------------------------------------------------------------------------- /codingce-springmvc/springmvc-04-controller/web/WEB-INF/jsp/test.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: xzMa 4 | Date: 2020/8/3 5 | Time: 16:03 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | ${msg} 15 | 16 | 17 | -------------------------------------------------------------------------------- /dubbo + zookeeper/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/COMPUTATION/src/MainClass.java: -------------------------------------------------------------------------------- 1 | public class MainClass { 2 | 3 | public static void main(String[] args) { 4 | Ball ball = new Ball(3); 5 | Cube cube = new Cube(6); 6 | System.out.println("ball的面积:" + getArea(ball)); 7 | System.out.println("cube的面积:" + getArea(cube)); 8 | } 9 | 10 | public static float getArea(Body b) { 11 | return b.area(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_004/src/CodeMain.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 1-100之和 3 | * @author xzMa 4 | */ 5 | public class CodeMain { 6 | private static final int TARGET_SUM = 100; 7 | public static void main(String[] args) { 8 | int i = 1, sum = 0; 9 | while (i <= TARGET_SUM) { 10 | sum += i; 11 | i++; 12 | } 13 | System.out.println("1+2+3...+99+100=" + sum); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /codingce-rabbitmq/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-wx/src/main/java/cn/com/codingce/wx/WxApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.wx; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class WxApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(WxApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /hadoop-redis/src/main/resources/templates/upload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 上传 6 | 7 | 8 |
9 | 上传的文件:
10 | 11 |
12 | 13 | -------------------------------------------------------------------------------- /codingce-javase/codingce-stream/src/cn/com/codingce/entity/Nested.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.entity; 2 | 3 | /** 4 | * 高度分层的结构 5 | * 6 | * @author 2460798168@qq.com 7 | * @date 2019/11/11 13:08 8 | */ 9 | public class Nested { 10 | Inner inner; 11 | 12 | public Inner getInner() { 13 | return inner; 14 | } 15 | 16 | public void setInner(Inner inner) { 17 | this.inner = inner; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-cusumer-dept-feign/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 80 3 | 4 | # 开启降级fein.hystrix 5 | feign: 6 | hystrix: 7 | enabled: true 8 | 9 | # Eureka配置 10 | eureka: 11 | client: 12 | register-with-eureka: false # 不向Eureka中注册自己 13 | service-url: 14 | defaultZone: http://eureka7002.com:7002/eureka/, http://eureka7002.com:7002/eureka/, http://eureka7003.com:7003/eureka/ 15 | -------------------------------------------------------------------------------- /codingce-spring/spring-08-proxy/src/main/java/cn/com/codingce/demo2/Client.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.demo2; 2 | 3 | public class Client { 4 | 5 | public static void main(String args[]) { 6 | 7 | UserServiceImpl userService = new UserServiceImpl(); 8 | UserServiceProxy proxy = new UserServiceProxy(); 9 | 10 | proxy.setUserService(userService); 11 | proxy.add(); 12 | 13 | 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /young-quartz/src/test/java/com/young/quartz/AppTest.java: -------------------------------------------------------------------------------- 1 | package com.young.quartz; 2 | 3 | import static org.junit.Assert.assertTrue; 4 | 5 | import org.junit.Test; 6 | 7 | /** 8 | * Unit test for simple SimpleQuartzApp. 9 | */ 10 | public class AppTest 11 | { 12 | /** 13 | * Rigorous Test :-) 14 | */ 15 | @Test 16 | public void shouldAnswerWithTrue() 17 | { 18 | assertTrue( true ); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/13-channel/test4_channel.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | c := make(chan int) 7 | 8 | go func() { 9 | for i := 0; i < 5; i++ { 10 | c <- i 11 | } 12 | 13 | //close可以关闭一个channel 14 | close(c) 15 | }() 16 | 17 | //可以使用range来迭代不断操作channel 18 | for data := range c { 19 | fmt.Println(data) 20 | } 21 | 22 | fmt.Println("Main Finished..") 23 | } 24 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_039/src/PrintTable.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 本实验使用循环嵌套输出10*10的表格,每个表格内显示表格当前行列值。 3 | * @author xzMa 4 | */ 5 | public class PrintTable { 6 | public static void main(String[] args) { 7 | for (int i = 0; i < 10; i++) { 8 | for (int j = 0; j < 10; j++) { 9 | System.out.print("(" + i + "," + j + ")"); 10 | } 11 | System.out.println(); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C03_033/src/PIUtil.java: -------------------------------------------------------------------------------- 1 | public class PIUtil { 2 | private static double PI = getPI(); 3 | private static double numOne = 1.0/5; 4 | private static double numTwo = 1.0/239; 5 | 6 | 7 | public static double getPI() { 8 | return 16 * Math.atan(numOne)- 4 * Math.atan(numTwo); 9 | } 10 | 11 | public static void main(String[] args) { 12 | System.out.println(getPI()); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /codingce-javase/codingce-stream/src/cn/com/codingce/entity/Outer.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.entity; 2 | 3 | /** 4 | * 高度分层的结构 5 | * 6 | * @author 2460798168@qq.com 7 | * @date 2019/11/11 13:08 8 | */ 9 | public class Outer { 10 | Nested nested; 11 | 12 | public Nested getNested() { 13 | return nested; 14 | } 15 | 16 | public void setNested(Nested nested) { 17 | this.nested = nested; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/java/cn/com/codingce/controller/DashBoardController.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.controller; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.web.bind.annotation.GetMapping; 5 | 6 | @Controller 7 | public class DashBoardController { 8 | 9 | @GetMapping("/dashboard") 10 | public String dashboard() { 11 | return "dashboard"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/java/cn/com/codingce/controller/HelloController.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.controller; 2 | 3 | import org.springframework.web.bind.annotation.GetMapping; 4 | import org.springframework.web.bind.annotation.RestController; 5 | 6 | @RestController 7 | public class HelloController { 8 | 9 | @GetMapping("/hello") 10 | public String test1() { 11 | return "hello"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-eureka-7001/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-eureka-7002/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-zuul-9527/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-es/codingce-es-jd/src/main/java/cn/com/codingce/pojo/Content.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | /** 8 | * 实体类 9 | * 10 | * @author mxz 11 | */ 12 | @Data 13 | @NoArgsConstructor 14 | @AllArgsConstructor 15 | public class Content { 16 | private String title; 17 | private String img; 18 | private String price; 19 | } 20 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/lesson28_标准库/logOne.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "log" 4 | 5 | // log包 6 | func init() { 7 | log.SetPrefix("Trace: ") 8 | log.SetFlags(log.Ldate | log.Lmicroseconds | log.Llongfile) 9 | } 10 | 11 | func main() { 12 | log.Println("hello") 13 | 14 | // Fatalln 在调用Println 之后会接着调用os.Exit(1) 15 | log.Fatal("fatal") 16 | 17 | // Panicln 在调用Println 之后会接着调用panic() 18 | log.Panicln("panic") 19 | 20 | } 21 | -------------------------------------------------------------------------------- /codingce-redis/redis-01-jedis/src/main/java/cn/com/codincge/RedisApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codincge; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class RedisApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(RedisApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-sms/src/main/java/cn/com/codingce/CodingceSmsApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class CodingceSmsApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(CodingceSmsApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-03-web/src/main/java/cn/com/codingce/WebApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class WebApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(WebApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-consumer-dept/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /hadoop-redis/src/main/java/cn/com/codingce/HadoopRedisApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class HadoopRedisApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(HadoopRedisApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /young-quartz/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /codingce-javase/CORE_C01_005/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /codingce-mybatis/mybatis-08/src/main/java/cn/com/codingce/dao/TeacherMapper.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.dao; 2 | 3 | import cn.com.codingce.pojo.Teacher; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | public interface TeacherMapper { 7 | 8 | //获取老师信息 9 | //List getTeacher(); 10 | 11 | //获取指定老师下所有学生信息 12 | Teacher getTeacher(@Param("id") int id); 13 | 14 | Teacher getTeacher2(@Param("id") int id); 15 | 16 | } 17 | -------------------------------------------------------------------------------- /codingce-spring/spring-05-before/src/main/java/cn/com/codingce/codespring/entity/AutoSpellChecker.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.codespring.entity; 2 | 3 | /** 4 | * Auto 的依赖文件 5 | * 6 | * @author 2460798168@qq.com 7 | * @date 2019/12/25 14:56 8 | */ 9 | public class AutoSpellChecker { 10 | 11 | public AutoSpellChecker() { 12 | } 13 | 14 | public void checkSpelling() { 15 | System.out.println("依赖文件的方法."); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-01-yaml/src/main/java/cn/com/codingce/YamlApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class YamlApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(YamlApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-client-3355/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-eureka-7001/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-server-3344/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-cusumer-dept-feign/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-eureka-7002/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 7002 3 | 4 | # Eureka配置 5 | eureka: 6 | instance: 7 | hostname: eureka7002.com #Eureka服务端实例的名字 8 | client: 9 | register-with-eureka: false # 表示是否向eureka注册中心注册自己 10 | fetch-registry: false # 表示如果 false 则表示自己为注册中心 11 | service-url: 12 | defaultZone: http://eureka7001.com:7001/eureka/, http://eureka7003.com:7003/eureka/ 13 | 14 | 15 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-eureka-7003/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 7003 3 | 4 | # Eureka配置 5 | eureka: 6 | instance: 7 | hostname: eureka7003.com #Eureka服务端实例的名字 8 | client: 9 | register-with-eureka: false # 表示是否向eureka注册中心注册自己 10 | fetch-registry: false # 表示如果 false 则表示自己为注册中心 11 | service-url: 12 | defaultZone: http://eureka7001.com:7001/eureka/, http://eureka7002.com:7002/eureka/ 13 | 14 | 15 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-provider-dept-8001/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-provider-dept-8002/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-provider-dept-8003/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-es/codingce-es-api/src/main/java/cn/com/codingce/pojo/User.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.pojo; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | import org.springframework.stereotype.Component; 7 | 8 | /** 9 | * @author mxz 10 | */ 11 | @Data 12 | @AllArgsConstructor 13 | @NoArgsConstructor 14 | @Component 15 | public class User { 16 | private String name; 17 | private int age; 18 | } 19 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/golang_study/13-channel/test1_channel.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | //定义一个channel 7 | c := make(chan int) 8 | 9 | go func() { 10 | defer fmt.Println("goroutine结束") 11 | 12 | fmt.Println("goroutine 正在运行...") 13 | 14 | c <- 666 //将666 发送给c 15 | }() 16 | 17 | num := <-c //从c中接受数据,并赋值给num 18 | 19 | fmt.Println("num = ", num) 20 | fmt.Println("main goroutine 结束...") 21 | } 22 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E034/src/cn/campsg/java/experiment/HrMarketer.java: -------------------------------------------------------------------------------- 1 | package cn.campsg.java.experiment; 2 | 3 | /** 4 | * @author xzMa 5 | */ 6 | public class HrMarketer { 7 | 8 | String seekJob(SeekJob seekJob) { 9 | 10 | if (seekJob.getSeekerAverage() > SeekJob.SEEKER_AVERAGE_SCORE) { 11 | return seekJob.getName() + "被本公司录用"; 12 | } 13 | 14 | return seekJob.getName() + "成绩未达标,不予录用"; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-config-provider-dept-8001/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-consumer-hystrix-dashboard/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-provider-dept-hystrix-8001/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _ _ __ _ 2 | __ ___ __| | (_) _ _ / _` | __ ___ 3 | / _| / _ \ / _` | | | | ' \ \__, | / _| / -_) 4 | \__|_ \___/ \__,_| _|_|_ |_||_| |___/ \__|_ \___| 5 | _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 6 | "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' -------------------------------------------------------------------------------- /codingce-javase/CORE_C02_026/src/cn/com/codingce/CodeMain.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | public class CodeMain { 4 | public static void main(String[] args) { 5 | int i = 1, sum = 0; 6 | while (i <= 100) { 7 | if(i % 10 == 3) { 8 | break; 9 | } 10 | sum += i; 11 | i++; 12 | } 13 | System.out.println("加和1~100, 直到遇到各位数字是3的数字就中断加和操作: " + sum); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /codingce-javase/Pro_Test_1115/src/testtwo/MainClass.java: -------------------------------------------------------------------------------- 1 | package testtwo; 2 | 3 | public class MainClass { 4 | public static void main(String[] args) { 5 | Square square = new Square(5.2f); 6 | Rou rou = new Rou(6.3f); 7 | System.out.println(getPerimeter(square)); 8 | System.out.println(getPerimeter(rou)); 9 | } 10 | 11 | public static float getPerimeter(Shape s) { 12 | return s.perimeter(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /codingce-javase/SE_JAVA_EXP_E030/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/src/cn/com/codingce/myselfannotation/Person.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.myselfannotation; 2 | 3 | /** 4 | * @Author: Jiangjun 5 | * @Date: 2019/10/7 9:19 6 | */ 7 | public class Person { 8 | 9 | /** 10 | * 在写实体类的时候 建议大家用包装类 写属性 避免出现空值的安全隐患 11 | */ 12 | @MyAnnotation("掌上编程") 13 | private String name; 14 | 15 | @MyAnnotation({"掌上编程呀","12","测试"}) 16 | public void eat(){ 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-04-myjdbc/src/main/java/cn/com/codingce/MyjdbcApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class MyjdbcApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(MyjdbcApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-05-mydruid/src/main/java/cn/com/codingce/MydruidApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class MydruidApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(MydruidApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-09-shiro/src/main/java/cn/com/codingce/MyshiroApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class MyshiroApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(MyshiroApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-12-myredis/src/main/java/cn/com/codingce/MyredisApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class MyredisApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(MyredisApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-es/codingce-es-api/src/main/java/cn/com/codingce/CodingceEsApiApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class CodingceEsApiApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(CodingceEsApiApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-02-myconfig/src/main/java/cn/com/codingce/MyconfigApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class MyconfigApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(MyconfigApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /dubbo + zookeeper/consumer-server/src/main/java/cn/com/codingce/ConsumerServerApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class ConsumerServerApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(ConsumerServerApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-framework/codingce-label/label-api/src/main/java/com/bsh/lable/LableAdminApplication.java: -------------------------------------------------------------------------------- 1 | package com.bsh.lable; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class LableAdminApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(LableAdminApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-go/lesson/lesson-go/src/lesson/lesson17_接口/my-interface.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | type Phone interface { 6 | call() 7 | } 8 | 9 | type Huawei struct{} 10 | 11 | func (huawei *Huawei) call() { 12 | fmt.Println("I am HuaWei") 13 | } 14 | 15 | type Iphone struct{} 16 | 17 | func (iphone *Iphone) call() { 18 | fmt.Println("I am Iphone") 19 | } 20 | 21 | func main() { 22 | var phone Phone 23 | phone = new(Huawei) 24 | phone.call() 25 | } 26 | -------------------------------------------------------------------------------- /codingce-javase/codingce-javabase/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /codingce-jdbc/src/main/java/cn/com/codingce/entity/Student.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.entity; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @AllArgsConstructor 9 | @NoArgsConstructor 10 | public class Student { 11 | 12 | private int pid; 13 | 14 | private int sno; 15 | 16 | private String sname; 17 | 18 | private int sage; 19 | 20 | private String saddress; 21 | 22 | } 23 | -------------------------------------------------------------------------------- /codingce-springboot/springboot-10-mysaggger/src/main/java/cn/com/codingce/MysagggerApplication.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class MysagggerApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(MysagggerApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /codingce-springcloud/springcloud-provider-dept-8001/src/main/java/cn/com/codingce/springcloud/service/DeptService.java: -------------------------------------------------------------------------------- 1 | package cn.com.codingce.springcloud.service; 2 | 3 | import cn.com.codingce.springcloud.pojo.Dept; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * @author xzMa 9 | */ 10 | public interface DeptService{ 11 | 12 | public boolean addDept(Dept dept); 13 | 14 | public Dept queryById(Long id); 15 | 16 | public List queryAll(); 17 | } 18 | --------------------------------------------------------------------------------