├── .gitignore ├── LICENSE ├── README.md ├── api.md ├── pic ├── er.mdj ├── er.png ├── jiagou.png ├── kk.png ├── kk.vsdx ├── shw.vsdx ├── shw_login.mdj ├── shw_login.png ├── shw_msg.png ├── shw消息系统.vsdx ├── yanzheng.mdj └── yanzheng.png ├── shw-common ├── pom.xml └── src │ └── main │ └── java │ └── top │ └── itning │ └── server │ └── common │ ├── exception │ ├── BaseException.java │ ├── CasException.java │ ├── FileException.java │ ├── NoSuchFiledValueException.java │ ├── NullFiledException.java │ ├── PermissionsException.java │ └── RoleException.java │ ├── model │ ├── LoginUser.java │ └── RestModel.java │ └── util │ └── Preconditions.java ├── shw-eureka ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shweureka │ │ │ └── ShwEurekaApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shweureka │ └── ShwEurekaApplicationTests.java ├── shw-file ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shwfile │ │ │ ├── ShwFileApplication.java │ │ │ ├── client │ │ │ ├── SecurityClient.java │ │ │ ├── UploadClient.java │ │ │ ├── WorkClient.java │ │ │ └── entity │ │ │ │ ├── Student.java │ │ │ │ ├── Upload.java │ │ │ │ └── Work.java │ │ │ ├── config │ │ │ └── BeansConfig.java │ │ │ ├── controller │ │ │ └── FileController.java │ │ │ ├── persistence │ │ │ ├── FilePersistence.java │ │ │ └── impl │ │ │ │ └── DefaultFilePersistenceImpl.java │ │ │ ├── pojo │ │ │ └── FileUploadMetaData.java │ │ │ ├── service │ │ │ ├── FileService.java │ │ │ └── impl │ │ │ │ └── FileServiceImpl.java │ │ │ ├── stream │ │ │ ├── UploadMessage.java │ │ │ └── UploadStreamReceiver.java │ │ │ └── util │ │ │ └── FileUtils.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shwfile │ ├── ShwFileApplicationTests.java │ └── client │ └── UploadClientTest.java ├── shw-gateway ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shwgateway │ │ │ ├── ShwGatewayApplication.java │ │ │ ├── config │ │ │ └── CustomWebMvcConfig.java │ │ │ ├── filter │ │ │ ├── AuthorizationHeaderFilter.java │ │ │ ├── CorsFilter.java │ │ │ └── ErrorFilter.java │ │ │ ├── handler │ │ │ └── ErrorHandler.java │ │ │ └── util │ │ │ └── JwtUtils.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shwgateway │ ├── ShwGatewayApplicationTests.java │ └── util │ └── JwtUtilsTest.java ├── shw-group ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shwgroup │ │ │ ├── ShwGroupApplication.java │ │ │ ├── entity │ │ │ └── Group.java │ │ │ ├── exception │ │ │ ├── GlobalErrorAttributes.java │ │ │ ├── GlobalErrorWebExceptionHandler.java │ │ │ └── JsonHttpMessageWriter.java │ │ │ ├── handler │ │ │ └── GroupHandler.java │ │ │ ├── repository │ │ │ └── GroupRepository.java │ │ │ ├── router │ │ │ └── GroupRouters.java │ │ │ ├── service │ │ │ ├── GroupService.java │ │ │ └── impl │ │ │ │ └── GroupServiceImpl.java │ │ │ ├── stream │ │ │ └── DelGroupMessage.java │ │ │ └── util │ │ │ └── ReactiveMongoHelper.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shwgroup │ ├── ShwGroupApplicationTests.java │ ├── repository │ └── GroupRepositoryTest.java │ ├── service │ └── GroupServiceTest.java │ └── util │ └── ReactiveMongoHelperTest.java ├── shw-hystrix-dashboard ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shwhystrixdashboard │ │ │ └── ShwHystrixDashboardApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shwhystrixdashboard │ └── ShwHystrixDashboardApplicationTests.java ├── shw-notice ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shwnotice │ │ │ ├── ShwNoticeApplication.java │ │ │ ├── entity │ │ │ └── Notice.java │ │ │ ├── exception │ │ │ ├── GlobalErrorAttributes.java │ │ │ ├── GlobalErrorWebExceptionHandler.java │ │ │ └── JsonHttpMessageWriter.java │ │ │ ├── handler │ │ │ └── NoticeHandler.java │ │ │ ├── repository │ │ │ └── NoticeRepository.java │ │ │ ├── router │ │ │ └── NoticeRouters.java │ │ │ └── service │ │ │ ├── NoticeService.java │ │ │ └── impl │ │ │ └── NoticeServiceImpl.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shwnotice │ └── ShwNoticeApplicationTests.java ├── shw-security ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shwsecurity │ │ │ ├── ShwSecurityApplication.java │ │ │ ├── config │ │ │ ├── BeansConfig.java │ │ │ └── CasProperties.java │ │ │ ├── entity │ │ │ └── Student.java │ │ │ ├── exception │ │ │ ├── GlobalErrorAttributes.java │ │ │ ├── GlobalErrorWebExceptionHandler.java │ │ │ └── JsonHttpMessageWriter.java │ │ │ ├── handler │ │ │ └── LoginHandler.java │ │ │ ├── repository │ │ │ └── StudentRepository.java │ │ │ ├── router │ │ │ └── LoginRouters.java │ │ │ └── util │ │ │ └── JwtUtils.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shwsecurity │ └── ShwSecurityApplicationTests.java ├── shw-studentgroup ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shwstudentgroup │ │ │ ├── ShwStudentgroupApplication.java │ │ │ ├── client │ │ │ ├── GroupClient.java │ │ │ └── entrty │ │ │ │ └── Group.java │ │ │ ├── config │ │ │ └── BeansConfig.java │ │ │ ├── dto │ │ │ └── StudentGroupDTO.java │ │ │ ├── entity │ │ │ └── StudentGroup.java │ │ │ ├── exception │ │ │ ├── GlobalErrorAttributes.java │ │ │ ├── GlobalErrorWebExceptionHandler.java │ │ │ └── JsonHttpMessageWriter.java │ │ │ ├── handler │ │ │ └── StudentGroupHandler.java │ │ │ ├── repository │ │ │ └── StudentGroupRepository.java │ │ │ ├── router │ │ │ └── StudentGroupRouters.java │ │ │ ├── service │ │ │ ├── StudentGroupService.java │ │ │ └── impl │ │ │ │ └── StudentGroupServiceImpl.java │ │ │ ├── stream │ │ │ ├── DelGroupMessage.java │ │ │ ├── StreamReceiver.java │ │ │ └── StudentGroupMessage.java │ │ │ └── util │ │ │ ├── ReactiveMongoHelper.java │ │ │ └── Tuple.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shwstudentgroup │ ├── ShwStudentgroupApplicationTests.java │ ├── repository │ └── StudentGroupRepositoryTest.java │ └── service │ └── StudentGroupServiceTest.java ├── shw-upload ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── top │ │ │ └── itning │ │ │ └── server │ │ │ └── shwupload │ │ │ ├── ShwUploadApplication.java │ │ │ ├── client │ │ │ ├── WorkClient.java │ │ │ └── entity │ │ │ │ └── Work.java │ │ │ ├── entity │ │ │ └── Upload.java │ │ │ ├── exception │ │ │ ├── GlobalErrorAttributes.java │ │ │ ├── GlobalErrorWebExceptionHandler.java │ │ │ └── JsonHttpMessageWriter.java │ │ │ ├── handler │ │ │ └── UploadHandler.java │ │ │ ├── repository │ │ │ └── UploadRepository.java │ │ │ ├── router │ │ │ └── UploadRouters.java │ │ │ ├── service │ │ │ ├── UploadService.java │ │ │ └── impl │ │ │ │ └── UploadServiceImpl.java │ │ │ ├── stream │ │ │ ├── DelWorkMessage.java │ │ │ ├── StreamReceiver.java │ │ │ ├── StudentGroupMessage.java │ │ │ └── UploadMessage.java │ │ │ └── util │ │ │ └── ReactiveMongoHelper.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── top │ └── itning │ └── server │ └── shwupload │ ├── ShwUploadApplicationTests.java │ ├── repository │ └── UploadRepositoryTest.java │ └── service │ └── UploadServiceTest.java └── shw-work ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── top │ │ └── itning │ │ └── server │ │ └── shwwork │ │ ├── ShwWorkApplication.java │ │ ├── client │ │ ├── GroupClient.java │ │ ├── SecurityClient.java │ │ ├── StudentGroupClient.java │ │ ├── UploadClient.java │ │ └── entity │ │ │ ├── Group.java │ │ │ ├── Student.java │ │ │ ├── StudentGroup.java │ │ │ └── Upload.java │ │ ├── config │ │ ├── BeansConfig.java │ │ └── ModelMapperConfig.java │ │ ├── dto │ │ ├── WorkDTO.java │ │ └── WorkDetailsDTO.java │ │ ├── entity │ │ └── Work.java │ │ ├── exception │ │ ├── GlobalErrorAttributes.java │ │ ├── GlobalErrorWebExceptionHandler.java │ │ └── JsonHttpMessageWriter.java │ │ ├── handler │ │ └── WorkHandler.java │ │ ├── repository │ │ └── WorkRepository.java │ │ ├── router │ │ └── WorkRouters.java │ │ ├── service │ │ ├── WorkService.java │ │ └── impl │ │ │ └── WorkServiceImpl.java │ │ ├── stream │ │ ├── DelGroupMessage.java │ │ ├── DelWorkMessage.java │ │ └── StreamReceiver.java │ │ └── util │ │ ├── ReactiveMongoHelper.java │ │ ├── Tuple.java │ │ └── Tuple3.java └── resources │ └── application.properties └── test └── java └── top └── itning └── server └── shwwork ├── ShwWorkApplicationTests.java ├── TestJava.java ├── client └── UploadClientTest.java ├── repository └── WorkRepositoryTest.java └── service └── WorkServiceTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/README.md -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/api.md -------------------------------------------------------------------------------- /pic/er.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/er.mdj -------------------------------------------------------------------------------- /pic/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/er.png -------------------------------------------------------------------------------- /pic/jiagou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/jiagou.png -------------------------------------------------------------------------------- /pic/kk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/kk.png -------------------------------------------------------------------------------- /pic/kk.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/kk.vsdx -------------------------------------------------------------------------------- /pic/shw.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/shw.vsdx -------------------------------------------------------------------------------- /pic/shw_login.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/shw_login.mdj -------------------------------------------------------------------------------- /pic/shw_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/shw_login.png -------------------------------------------------------------------------------- /pic/shw_msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/shw_msg.png -------------------------------------------------------------------------------- /pic/shw消息系统.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/shw消息系统.vsdx -------------------------------------------------------------------------------- /pic/yanzheng.mdj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/yanzheng.mdj -------------------------------------------------------------------------------- /pic/yanzheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/pic/yanzheng.png -------------------------------------------------------------------------------- /shw-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/pom.xml -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/exception/BaseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/exception/BaseException.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/exception/CasException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/exception/CasException.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/exception/FileException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/exception/FileException.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/exception/NoSuchFiledValueException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/exception/NoSuchFiledValueException.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/exception/NullFiledException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/exception/NullFiledException.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/exception/PermissionsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/exception/PermissionsException.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/exception/RoleException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/exception/RoleException.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/model/LoginUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/model/LoginUser.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/model/RestModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/model/RestModel.java -------------------------------------------------------------------------------- /shw-common/src/main/java/top/itning/server/common/util/Preconditions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-common/src/main/java/top/itning/server/common/util/Preconditions.java -------------------------------------------------------------------------------- /shw-eureka/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/.gitignore -------------------------------------------------------------------------------- /shw-eureka/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-eureka/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-eureka/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-eureka/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/mvnw -------------------------------------------------------------------------------- /shw-eureka/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/mvnw.cmd -------------------------------------------------------------------------------- /shw-eureka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/pom.xml -------------------------------------------------------------------------------- /shw-eureka/src/main/java/top/itning/server/shweureka/ShwEurekaApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/src/main/java/top/itning/server/shweureka/ShwEurekaApplication.java -------------------------------------------------------------------------------- /shw-eureka/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-eureka/src/test/java/top/itning/server/shweureka/ShwEurekaApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-eureka/src/test/java/top/itning/server/shweureka/ShwEurekaApplicationTests.java -------------------------------------------------------------------------------- /shw-file/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/.gitignore -------------------------------------------------------------------------------- /shw-file/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-file/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-file/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-file/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/mvnw -------------------------------------------------------------------------------- /shw-file/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/mvnw.cmd -------------------------------------------------------------------------------- /shw-file/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/pom.xml -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/ShwFileApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/ShwFileApplication.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/client/SecurityClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/client/SecurityClient.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/client/UploadClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/client/UploadClient.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/client/WorkClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/client/WorkClient.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/client/entity/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/client/entity/Student.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/client/entity/Upload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/client/entity/Upload.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/client/entity/Work.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/client/entity/Work.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/config/BeansConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/config/BeansConfig.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/controller/FileController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/controller/FileController.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/persistence/FilePersistence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/persistence/FilePersistence.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/persistence/impl/DefaultFilePersistenceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/persistence/impl/DefaultFilePersistenceImpl.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/pojo/FileUploadMetaData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/pojo/FileUploadMetaData.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/service/FileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/service/FileService.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/service/impl/FileServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/service/impl/FileServiceImpl.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/stream/UploadMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/stream/UploadMessage.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/stream/UploadStreamReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/stream/UploadStreamReceiver.java -------------------------------------------------------------------------------- /shw-file/src/main/java/top/itning/server/shwfile/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/java/top/itning/server/shwfile/util/FileUtils.java -------------------------------------------------------------------------------- /shw-file/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-file/src/test/java/top/itning/server/shwfile/ShwFileApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/test/java/top/itning/server/shwfile/ShwFileApplicationTests.java -------------------------------------------------------------------------------- /shw-file/src/test/java/top/itning/server/shwfile/client/UploadClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-file/src/test/java/top/itning/server/shwfile/client/UploadClientTest.java -------------------------------------------------------------------------------- /shw-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/.gitignore -------------------------------------------------------------------------------- /shw-gateway/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-gateway/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-gateway/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-gateway/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/mvnw -------------------------------------------------------------------------------- /shw-gateway/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/mvnw.cmd -------------------------------------------------------------------------------- /shw-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/pom.xml -------------------------------------------------------------------------------- /shw-gateway/src/main/java/top/itning/server/shwgateway/ShwGatewayApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/main/java/top/itning/server/shwgateway/ShwGatewayApplication.java -------------------------------------------------------------------------------- /shw-gateway/src/main/java/top/itning/server/shwgateway/config/CustomWebMvcConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/main/java/top/itning/server/shwgateway/config/CustomWebMvcConfig.java -------------------------------------------------------------------------------- /shw-gateway/src/main/java/top/itning/server/shwgateway/filter/AuthorizationHeaderFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/main/java/top/itning/server/shwgateway/filter/AuthorizationHeaderFilter.java -------------------------------------------------------------------------------- /shw-gateway/src/main/java/top/itning/server/shwgateway/filter/CorsFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/main/java/top/itning/server/shwgateway/filter/CorsFilter.java -------------------------------------------------------------------------------- /shw-gateway/src/main/java/top/itning/server/shwgateway/filter/ErrorFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/main/java/top/itning/server/shwgateway/filter/ErrorFilter.java -------------------------------------------------------------------------------- /shw-gateway/src/main/java/top/itning/server/shwgateway/handler/ErrorHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/main/java/top/itning/server/shwgateway/handler/ErrorHandler.java -------------------------------------------------------------------------------- /shw-gateway/src/main/java/top/itning/server/shwgateway/util/JwtUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/main/java/top/itning/server/shwgateway/util/JwtUtils.java -------------------------------------------------------------------------------- /shw-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-gateway/src/test/java/top/itning/server/shwgateway/ShwGatewayApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/test/java/top/itning/server/shwgateway/ShwGatewayApplicationTests.java -------------------------------------------------------------------------------- /shw-gateway/src/test/java/top/itning/server/shwgateway/util/JwtUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-gateway/src/test/java/top/itning/server/shwgateway/util/JwtUtilsTest.java -------------------------------------------------------------------------------- /shw-group/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/.gitignore -------------------------------------------------------------------------------- /shw-group/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-group/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-group/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-group/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/mvnw -------------------------------------------------------------------------------- /shw-group/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/mvnw.cmd -------------------------------------------------------------------------------- /shw-group/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/pom.xml -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/ShwGroupApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/ShwGroupApplication.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/entity/Group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/entity/Group.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/exception/GlobalErrorAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/exception/GlobalErrorAttributes.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/exception/GlobalErrorWebExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/exception/GlobalErrorWebExceptionHandler.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/exception/JsonHttpMessageWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/exception/JsonHttpMessageWriter.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/handler/GroupHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/handler/GroupHandler.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/repository/GroupRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/repository/GroupRepository.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/router/GroupRouters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/router/GroupRouters.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/service/GroupService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/service/GroupService.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/service/impl/GroupServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/service/impl/GroupServiceImpl.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/stream/DelGroupMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/stream/DelGroupMessage.java -------------------------------------------------------------------------------- /shw-group/src/main/java/top/itning/server/shwgroup/util/ReactiveMongoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/java/top/itning/server/shwgroup/util/ReactiveMongoHelper.java -------------------------------------------------------------------------------- /shw-group/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-group/src/test/java/top/itning/server/shwgroup/ShwGroupApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/test/java/top/itning/server/shwgroup/ShwGroupApplicationTests.java -------------------------------------------------------------------------------- /shw-group/src/test/java/top/itning/server/shwgroup/repository/GroupRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/test/java/top/itning/server/shwgroup/repository/GroupRepositoryTest.java -------------------------------------------------------------------------------- /shw-group/src/test/java/top/itning/server/shwgroup/service/GroupServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/test/java/top/itning/server/shwgroup/service/GroupServiceTest.java -------------------------------------------------------------------------------- /shw-group/src/test/java/top/itning/server/shwgroup/util/ReactiveMongoHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-group/src/test/java/top/itning/server/shwgroup/util/ReactiveMongoHelperTest.java -------------------------------------------------------------------------------- /shw-hystrix-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/.gitignore -------------------------------------------------------------------------------- /shw-hystrix-dashboard/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-hystrix-dashboard/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-hystrix-dashboard/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-hystrix-dashboard/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/mvnw -------------------------------------------------------------------------------- /shw-hystrix-dashboard/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/mvnw.cmd -------------------------------------------------------------------------------- /shw-hystrix-dashboard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/pom.xml -------------------------------------------------------------------------------- /shw-hystrix-dashboard/src/main/java/top/itning/server/shwhystrixdashboard/ShwHystrixDashboardApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/src/main/java/top/itning/server/shwhystrixdashboard/ShwHystrixDashboardApplication.java -------------------------------------------------------------------------------- /shw-hystrix-dashboard/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-hystrix-dashboard/src/test/java/top/itning/server/shwhystrixdashboard/ShwHystrixDashboardApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-hystrix-dashboard/src/test/java/top/itning/server/shwhystrixdashboard/ShwHystrixDashboardApplicationTests.java -------------------------------------------------------------------------------- /shw-notice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/.gitignore -------------------------------------------------------------------------------- /shw-notice/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-notice/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-notice/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-notice/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/mvnw -------------------------------------------------------------------------------- /shw-notice/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/mvnw.cmd -------------------------------------------------------------------------------- /shw-notice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/pom.xml -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/ShwNoticeApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/ShwNoticeApplication.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/entity/Notice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/entity/Notice.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/exception/GlobalErrorAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/exception/GlobalErrorAttributes.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/exception/GlobalErrorWebExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/exception/GlobalErrorWebExceptionHandler.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/exception/JsonHttpMessageWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/exception/JsonHttpMessageWriter.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/handler/NoticeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/handler/NoticeHandler.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/repository/NoticeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/repository/NoticeRepository.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/router/NoticeRouters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/router/NoticeRouters.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/service/NoticeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/service/NoticeService.java -------------------------------------------------------------------------------- /shw-notice/src/main/java/top/itning/server/shwnotice/service/impl/NoticeServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/java/top/itning/server/shwnotice/service/impl/NoticeServiceImpl.java -------------------------------------------------------------------------------- /shw-notice/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-notice/src/test/java/top/itning/server/shwnotice/ShwNoticeApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-notice/src/test/java/top/itning/server/shwnotice/ShwNoticeApplicationTests.java -------------------------------------------------------------------------------- /shw-security/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/.gitignore -------------------------------------------------------------------------------- /shw-security/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-security/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-security/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-security/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/mvnw -------------------------------------------------------------------------------- /shw-security/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/mvnw.cmd -------------------------------------------------------------------------------- /shw-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/pom.xml -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/ShwSecurityApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/ShwSecurityApplication.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/config/BeansConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/config/BeansConfig.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/config/CasProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/config/CasProperties.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/entity/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/entity/Student.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/exception/GlobalErrorAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/exception/GlobalErrorAttributes.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/exception/GlobalErrorWebExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/exception/GlobalErrorWebExceptionHandler.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/exception/JsonHttpMessageWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/exception/JsonHttpMessageWriter.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/handler/LoginHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/handler/LoginHandler.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/repository/StudentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/repository/StudentRepository.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/router/LoginRouters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/router/LoginRouters.java -------------------------------------------------------------------------------- /shw-security/src/main/java/top/itning/server/shwsecurity/util/JwtUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/java/top/itning/server/shwsecurity/util/JwtUtils.java -------------------------------------------------------------------------------- /shw-security/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-security/src/test/java/top/itning/server/shwsecurity/ShwSecurityApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-security/src/test/java/top/itning/server/shwsecurity/ShwSecurityApplicationTests.java -------------------------------------------------------------------------------- /shw-studentgroup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/.gitignore -------------------------------------------------------------------------------- /shw-studentgroup/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-studentgroup/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-studentgroup/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-studentgroup/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/mvnw -------------------------------------------------------------------------------- /shw-studentgroup/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/mvnw.cmd -------------------------------------------------------------------------------- /shw-studentgroup/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/pom.xml -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/ShwStudentgroupApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/ShwStudentgroupApplication.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/client/GroupClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/client/GroupClient.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/client/entrty/Group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/client/entrty/Group.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/config/BeansConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/config/BeansConfig.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/dto/StudentGroupDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/dto/StudentGroupDTO.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/entity/StudentGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/entity/StudentGroup.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/exception/GlobalErrorAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/exception/GlobalErrorAttributes.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/exception/GlobalErrorWebExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/exception/GlobalErrorWebExceptionHandler.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/exception/JsonHttpMessageWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/exception/JsonHttpMessageWriter.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/handler/StudentGroupHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/handler/StudentGroupHandler.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/repository/StudentGroupRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/repository/StudentGroupRepository.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/router/StudentGroupRouters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/router/StudentGroupRouters.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/service/StudentGroupService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/service/StudentGroupService.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/service/impl/StudentGroupServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/service/impl/StudentGroupServiceImpl.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/stream/DelGroupMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/stream/DelGroupMessage.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/stream/StreamReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/stream/StreamReceiver.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/stream/StudentGroupMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/stream/StudentGroupMessage.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/util/ReactiveMongoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/util/ReactiveMongoHelper.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/util/Tuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/java/top/itning/server/shwstudentgroup/util/Tuple.java -------------------------------------------------------------------------------- /shw-studentgroup/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-studentgroup/src/test/java/top/itning/server/shwstudentgroup/ShwStudentgroupApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/test/java/top/itning/server/shwstudentgroup/ShwStudentgroupApplicationTests.java -------------------------------------------------------------------------------- /shw-studentgroup/src/test/java/top/itning/server/shwstudentgroup/repository/StudentGroupRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/test/java/top/itning/server/shwstudentgroup/repository/StudentGroupRepositoryTest.java -------------------------------------------------------------------------------- /shw-studentgroup/src/test/java/top/itning/server/shwstudentgroup/service/StudentGroupServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-studentgroup/src/test/java/top/itning/server/shwstudentgroup/service/StudentGroupServiceTest.java -------------------------------------------------------------------------------- /shw-upload/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/.gitignore -------------------------------------------------------------------------------- /shw-upload/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-upload/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-upload/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-upload/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/mvnw -------------------------------------------------------------------------------- /shw-upload/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/mvnw.cmd -------------------------------------------------------------------------------- /shw-upload/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/pom.xml -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/ShwUploadApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/ShwUploadApplication.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/client/WorkClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/client/WorkClient.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/client/entity/Work.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/client/entity/Work.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/entity/Upload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/entity/Upload.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/exception/GlobalErrorAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/exception/GlobalErrorAttributes.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/exception/GlobalErrorWebExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/exception/GlobalErrorWebExceptionHandler.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/exception/JsonHttpMessageWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/exception/JsonHttpMessageWriter.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/handler/UploadHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/handler/UploadHandler.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/repository/UploadRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/repository/UploadRepository.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/router/UploadRouters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/router/UploadRouters.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/service/UploadService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/service/UploadService.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/service/impl/UploadServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/service/impl/UploadServiceImpl.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/stream/DelWorkMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/stream/DelWorkMessage.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/stream/StreamReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/stream/StreamReceiver.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/stream/StudentGroupMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/stream/StudentGroupMessage.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/stream/UploadMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/stream/UploadMessage.java -------------------------------------------------------------------------------- /shw-upload/src/main/java/top/itning/server/shwupload/util/ReactiveMongoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/java/top/itning/server/shwupload/util/ReactiveMongoHelper.java -------------------------------------------------------------------------------- /shw-upload/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-upload/src/test/java/top/itning/server/shwupload/ShwUploadApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/test/java/top/itning/server/shwupload/ShwUploadApplicationTests.java -------------------------------------------------------------------------------- /shw-upload/src/test/java/top/itning/server/shwupload/repository/UploadRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/test/java/top/itning/server/shwupload/repository/UploadRepositoryTest.java -------------------------------------------------------------------------------- /shw-upload/src/test/java/top/itning/server/shwupload/service/UploadServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-upload/src/test/java/top/itning/server/shwupload/service/UploadServiceTest.java -------------------------------------------------------------------------------- /shw-work/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/.gitignore -------------------------------------------------------------------------------- /shw-work/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /shw-work/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /shw-work/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /shw-work/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/mvnw -------------------------------------------------------------------------------- /shw-work/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/mvnw.cmd -------------------------------------------------------------------------------- /shw-work/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/pom.xml -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/ShwWorkApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/ShwWorkApplication.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/client/GroupClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/client/GroupClient.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/client/SecurityClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/client/SecurityClient.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/client/StudentGroupClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/client/StudentGroupClient.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/client/UploadClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/client/UploadClient.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/client/entity/Group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/client/entity/Group.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/client/entity/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/client/entity/Student.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/client/entity/StudentGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/client/entity/StudentGroup.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/client/entity/Upload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/client/entity/Upload.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/config/BeansConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/config/BeansConfig.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/config/ModelMapperConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/config/ModelMapperConfig.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/dto/WorkDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/dto/WorkDTO.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/dto/WorkDetailsDTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/dto/WorkDetailsDTO.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/entity/Work.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/entity/Work.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/exception/GlobalErrorAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/exception/GlobalErrorAttributes.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/exception/GlobalErrorWebExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/exception/GlobalErrorWebExceptionHandler.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/exception/JsonHttpMessageWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/exception/JsonHttpMessageWriter.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/handler/WorkHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/handler/WorkHandler.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/repository/WorkRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/repository/WorkRepository.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/router/WorkRouters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/router/WorkRouters.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/service/WorkService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/service/WorkService.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/service/impl/WorkServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/service/impl/WorkServiceImpl.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/stream/DelGroupMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/stream/DelGroupMessage.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/stream/DelWorkMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/stream/DelWorkMessage.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/stream/StreamReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/stream/StreamReceiver.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/util/ReactiveMongoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/util/ReactiveMongoHelper.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/util/Tuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/util/Tuple.java -------------------------------------------------------------------------------- /shw-work/src/main/java/top/itning/server/shwwork/util/Tuple3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/java/top/itning/server/shwwork/util/Tuple3.java -------------------------------------------------------------------------------- /shw-work/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/main/resources/application.properties -------------------------------------------------------------------------------- /shw-work/src/test/java/top/itning/server/shwwork/ShwWorkApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/test/java/top/itning/server/shwwork/ShwWorkApplicationTests.java -------------------------------------------------------------------------------- /shw-work/src/test/java/top/itning/server/shwwork/TestJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/test/java/top/itning/server/shwwork/TestJava.java -------------------------------------------------------------------------------- /shw-work/src/test/java/top/itning/server/shwwork/client/UploadClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/test/java/top/itning/server/shwwork/client/UploadClientTest.java -------------------------------------------------------------------------------- /shw-work/src/test/java/top/itning/server/shwwork/repository/WorkRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/test/java/top/itning/server/shwwork/repository/WorkRepositoryTest.java -------------------------------------------------------------------------------- /shw-work/src/test/java/top/itning/server/shwwork/service/WorkServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itning/shw_server/HEAD/shw-work/src/test/java/top/itning/server/shwwork/service/WorkServiceTest.java --------------------------------------------------------------------------------