├── .gitignore ├── EasyRest ├── pom.xml └── src │ └── main │ ├── java │ ├── META-INF │ │ └── MANIFEST.MF │ └── tech │ │ └── dbgsoftware │ │ └── easyrest │ │ ├── EasyRest.java │ │ ├── EasyRestCallback.java │ │ ├── actors │ │ ├── ActorFactory.java │ │ ├── AnalysisMethodActor.java │ │ ├── EasyRestAkkaConf.java │ │ ├── ExceptionHandleActor.java │ │ ├── Signal.java │ │ ├── remote │ │ │ ├── RemoteInvokeActor.java │ │ │ ├── RemoteObjectAnalysisActor.java │ │ │ ├── RemoteRequestUtil.java │ │ │ ├── RemoteServiceExchangeActor.java │ │ │ ├── conf │ │ │ │ ├── EasyRestDistributedServiceBind.java │ │ │ │ └── ServiceMapping.java │ │ │ └── model │ │ │ │ ├── RemoteInvokeObject.java │ │ │ │ └── ServiceInfo.java │ │ ├── request │ │ │ ├── ControllerInvokeActor.java │ │ │ └── RequestProcessActor.java │ │ └── response │ │ │ ├── OutputActor.java │ │ │ └── ResponseProcessActor.java │ │ ├── annotations │ │ ├── async │ │ │ ├── AsyncRequest.java │ │ │ └── SyncRequest.java │ │ ├── bean │ │ │ ├── BindService.java │ │ │ └── EasyRestInterface.java │ │ ├── history │ │ │ └── HistoryRequired.java │ │ ├── method │ │ │ ├── BindURL.java │ │ │ ├── Delete.java │ │ │ ├── Get.java │ │ │ ├── Post.java │ │ │ ├── Put.java │ │ │ ├── RequestMethod.java │ │ │ ├── SkipCustomerInject.java │ │ │ └── SkipCustomerResponse.java │ │ ├── parameter │ │ │ ├── AllDefined.java │ │ │ ├── AutoInject.java │ │ │ ├── FromPath.java │ │ │ ├── NotNull.java │ │ │ ├── Optional.java │ │ │ ├── SkipInject.java │ │ │ └── validation │ │ │ │ ├── AllDefinedValidation.java │ │ │ │ └── NotNullValidation.java │ │ ├── permission │ │ │ └── PermissionRequired.java │ │ └── transaction │ │ │ └── TransactionRequired.java │ │ ├── aop │ │ ├── AopPostCommitStep.java │ │ ├── AopPreCommitStep.java │ │ ├── AopStep.java │ │ ├── StaticAopStepUtil.java │ │ ├── customer │ │ │ ├── CustomInjection.java │ │ │ └── CustomResponse.java │ │ ├── pre │ │ │ ├── AopInitRequestInfoStep.java │ │ │ ├── AopParametersInjectStep.java │ │ │ └── AopRequestValidateStep.java │ │ └── resolvers │ │ │ ├── FormDataResolve.java │ │ │ ├── JsonDataResolve.java │ │ │ ├── ParameterTypeResolve.java │ │ │ └── UrlDataResolve.java │ │ ├── exception │ │ ├── ConditionMissingException.java │ │ ├── EasyRestException.java │ │ ├── ExceptionHandler.java │ │ ├── MethodNotAllowedException.java │ │ ├── PageNotFoundException.java │ │ ├── ParameterNotFoundException.java │ │ └── PermissionException.java │ │ ├── ioc │ │ ├── remote │ │ │ ├── EasyRestProxyFactory.java │ │ │ ├── EasyRestServiceLookup.java │ │ │ └── proxy │ │ │ │ ├── ProxyForBeanClassInvoke.java │ │ │ │ └── ProxyForBeanNameInvoke.java │ │ └── utils │ │ │ ├── BeanOperationUtils.java │ │ │ └── StaticClassUtils.java │ │ ├── model │ │ ├── ErrorResponse.java │ │ ├── HttpEntity.java │ │ ├── Response.java │ │ ├── ResponseEntity.java │ │ └── request │ │ │ ├── AbstractRequestModel.java │ │ │ ├── Request.java │ │ │ ├── RequestModel.java │ │ │ └── RestObject.java │ │ ├── network │ │ ├── NettyInit.java │ │ ├── NettyLaunch.java │ │ ├── conf │ │ │ └── ChannelOptionBuilder.java │ │ ├── core │ │ │ ├── api │ │ │ │ └── BaseConfiguration.java │ │ │ └── pipeline │ │ │ │ ├── in │ │ │ │ └── RequestProcessHandler.java │ │ │ │ └── utils │ │ │ │ └── ByteBufUtils.java │ │ ├── exception │ │ │ └── ConfigurationException.java │ │ └── router │ │ │ ├── PathNode.java │ │ │ ├── PathStore.java │ │ │ ├── RouterProvider.java │ │ │ └── UrlFormat.java │ │ └── utils │ │ ├── DateUtils.java │ │ ├── DoubleTypeAdapter.java │ │ ├── DoubleUtils.java │ │ ├── IntegerTypeAdapter.java │ │ ├── IntegerUtils.java │ │ ├── JsonTranslationUtil.java │ │ ├── LogUtils.java │ │ ├── LongTypeAdapter.java │ │ ├── StringUtils.java │ │ └── ThreadStackUtils.java │ └── resources │ └── easyrest-applicationContext-01.xml ├── Example ├── Example-Distributed-Service-1 │ ├── example-service-1-api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── api │ │ │ └── Service1.java │ ├── example-service-1-main │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── main │ │ │ │ ├── Startup.java │ │ │ │ └── impl │ │ │ │ └── Service1Impl.java │ │ │ └── resources │ │ │ ├── MyExampleApplicationContext-01.xml │ │ │ ├── application.conf │ │ │ ├── log4j.properties │ │ │ └── services-mapping-01.json │ └── pom.xml ├── Example-Distributed-Service-2 │ ├── example-service-2-api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── api │ │ │ └── Service2.java │ ├── example-service-2-main │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── main │ │ │ │ ├── Startup.java │ │ │ │ └── impl │ │ │ │ └── Service2Impl.java │ │ │ └── resources │ │ │ ├── MyExampleApplicationContext-02.xml │ │ │ ├── application.conf │ │ │ ├── log4j.properties │ │ │ └── services-mapping-02.json │ └── pom.xml ├── Example-Distributed-Service-Model │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ └── model │ │ └── People.java ├── Example-Quick-Start │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ ├── Example.java │ │ │ ├── InfoMation.java │ │ │ ├── model │ │ │ └── Stock.java │ │ │ ├── rest │ │ │ ├── StockInfoRest.java │ │ │ └── TestRestService.java │ │ │ └── services │ │ │ ├── StockInfoRestServiceImpl.java │ │ │ └── TestServiceImpl.java │ │ └── resources │ │ ├── MyExampleApplicationContext.xml │ │ └── log4j.properties └── pom.xml ├── README-zh.md ├── README.md └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/.gitignore -------------------------------------------------------------------------------- /EasyRest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/pom.xml -------------------------------------------------------------------------------- /EasyRest/src/main/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/EasyRest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/EasyRest.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/EasyRestCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/EasyRestCallback.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/ActorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/ActorFactory.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/AnalysisMethodActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/AnalysisMethodActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/EasyRestAkkaConf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/EasyRestAkkaConf.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/ExceptionHandleActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/ExceptionHandleActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/Signal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/Signal.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/RemoteInvokeActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/RemoteInvokeActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/RemoteObjectAnalysisActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/RemoteObjectAnalysisActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/RemoteRequestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/RemoteRequestUtil.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/RemoteServiceExchangeActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/RemoteServiceExchangeActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/conf/EasyRestDistributedServiceBind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/conf/EasyRestDistributedServiceBind.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/conf/ServiceMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/conf/ServiceMapping.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/model/RemoteInvokeObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/model/RemoteInvokeObject.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/model/ServiceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/remote/model/ServiceInfo.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/request/ControllerInvokeActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/request/ControllerInvokeActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/request/RequestProcessActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/request/RequestProcessActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/response/OutputActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/response/OutputActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/response/ResponseProcessActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/actors/response/ResponseProcessActor.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/async/AsyncRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/async/AsyncRequest.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/async/SyncRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/async/SyncRequest.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/bean/BindService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/bean/BindService.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/bean/EasyRestInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/bean/EasyRestInterface.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/history/HistoryRequired.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/history/HistoryRequired.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/BindURL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/BindURL.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/Delete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/Delete.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/Get.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/Get.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/Post.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/Post.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/Put.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/Put.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/RequestMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/RequestMethod.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/SkipCustomerInject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/SkipCustomerInject.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/SkipCustomerResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/method/SkipCustomerResponse.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/AllDefined.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/AllDefined.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/AutoInject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/AutoInject.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/FromPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/FromPath.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/NotNull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/NotNull.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/Optional.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/Optional.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/SkipInject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/SkipInject.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/validation/AllDefinedValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/validation/AllDefinedValidation.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/validation/NotNullValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/parameter/validation/NotNullValidation.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/permission/PermissionRequired.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/permission/PermissionRequired.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/transaction/TransactionRequired.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/annotations/transaction/TransactionRequired.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/AopPostCommitStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/AopPostCommitStep.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/AopPreCommitStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/AopPreCommitStep.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/AopStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/AopStep.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/StaticAopStepUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/StaticAopStepUtil.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/customer/CustomInjection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/customer/CustomInjection.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/customer/CustomResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/customer/CustomResponse.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/pre/AopInitRequestInfoStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/pre/AopInitRequestInfoStep.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/pre/AopParametersInjectStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/pre/AopParametersInjectStep.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/pre/AopRequestValidateStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/pre/AopRequestValidateStep.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/resolvers/FormDataResolve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/resolvers/FormDataResolve.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/resolvers/JsonDataResolve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/resolvers/JsonDataResolve.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/resolvers/ParameterTypeResolve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/resolvers/ParameterTypeResolve.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/resolvers/UrlDataResolve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/aop/resolvers/UrlDataResolve.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/ConditionMissingException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/ConditionMissingException.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/EasyRestException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/EasyRestException.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/ExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/ExceptionHandler.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/MethodNotAllowedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/MethodNotAllowedException.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/PageNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/PageNotFoundException.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/ParameterNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/ParameterNotFoundException.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/PermissionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/exception/PermissionException.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/remote/EasyRestProxyFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/remote/EasyRestProxyFactory.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/remote/EasyRestServiceLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/remote/EasyRestServiceLookup.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/remote/proxy/ProxyForBeanClassInvoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/remote/proxy/ProxyForBeanClassInvoke.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/remote/proxy/ProxyForBeanNameInvoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/remote/proxy/ProxyForBeanNameInvoke.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/utils/BeanOperationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/utils/BeanOperationUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/utils/StaticClassUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/ioc/utils/StaticClassUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/ErrorResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/ErrorResponse.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/HttpEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/HttpEntity.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/Response.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/ResponseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/ResponseEntity.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/request/AbstractRequestModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/request/AbstractRequestModel.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/request/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/request/Request.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/request/RequestModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/request/RequestModel.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/request/RestObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/model/request/RestObject.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/NettyInit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/NettyInit.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/NettyLaunch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/NettyLaunch.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/conf/ChannelOptionBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/conf/ChannelOptionBuilder.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/core/api/BaseConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/core/api/BaseConfiguration.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/core/pipeline/in/RequestProcessHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/core/pipeline/in/RequestProcessHandler.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/core/pipeline/utils/ByteBufUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/core/pipeline/utils/ByteBufUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/exception/ConfigurationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/exception/ConfigurationException.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/router/PathNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/router/PathNode.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/router/PathStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/router/PathStore.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/router/RouterProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/router/RouterProvider.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/router/UrlFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/network/router/UrlFormat.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/DateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/DateUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/DoubleTypeAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/DoubleTypeAdapter.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/DoubleUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/DoubleUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/IntegerTypeAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/IntegerTypeAdapter.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/IntegerUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/IntegerUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/JsonTranslationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/JsonTranslationUtil.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/LogUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/LogUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/LongTypeAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/LongTypeAdapter.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/StringUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/ThreadStackUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/java/tech/dbgsoftware/easyrest/utils/ThreadStackUtils.java -------------------------------------------------------------------------------- /EasyRest/src/main/resources/easyrest-applicationContext-01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/EasyRest/src/main/resources/easyrest-applicationContext-01.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-api/pom.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-api/src/main/java/com/example/api/Service1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-api/src/main/java/com/example/api/Service1.java -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-main/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-main/pom.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-main/src/main/java/com/example/main/Startup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-main/src/main/java/com/example/main/Startup.java -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-main/src/main/java/com/example/main/impl/Service1Impl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-main/src/main/java/com/example/main/impl/Service1Impl.java -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-main/src/main/resources/MyExampleApplicationContext-01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-main/src/main/resources/MyExampleApplicationContext-01.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-main/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-main/src/main/resources/application.conf -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-main/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-main/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/example-service-1-main/src/main/resources/services-mapping-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/example-service-1-main/src/main/resources/services-mapping-01.json -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-1/pom.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-api/pom.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-api/src/main/java/com/example/api/Service2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-api/src/main/java/com/example/api/Service2.java -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-main/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-main/pom.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-main/src/main/java/com/example/main/Startup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-main/src/main/java/com/example/main/Startup.java -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-main/src/main/java/com/example/main/impl/Service2Impl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-main/src/main/java/com/example/main/impl/Service2Impl.java -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-main/src/main/resources/MyExampleApplicationContext-02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-main/src/main/resources/MyExampleApplicationContext-02.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-main/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-main/src/main/resources/application.conf -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-main/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-main/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/example-service-2-main/src/main/resources/services-mapping-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/example-service-2-main/src/main/resources/services-mapping-02.json -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-2/pom.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-Model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-Model/pom.xml -------------------------------------------------------------------------------- /Example/Example-Distributed-Service-Model/src/main/java/com/example/model/People.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Distributed-Service-Model/src/main/java/com/example/model/People.java -------------------------------------------------------------------------------- /Example/Example-Quick-Start/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/pom.xml -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/java/com/example/Example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/java/com/example/Example.java -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/java/com/example/InfoMation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/java/com/example/InfoMation.java -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/java/com/example/model/Stock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/java/com/example/model/Stock.java -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/java/com/example/rest/StockInfoRest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/java/com/example/rest/StockInfoRest.java -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/java/com/example/rest/TestRestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/java/com/example/rest/TestRestService.java -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/java/com/example/services/StockInfoRestServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/java/com/example/services/StockInfoRestServiceImpl.java -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/java/com/example/services/TestServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/java/com/example/services/TestServiceImpl.java -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/resources/MyExampleApplicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/resources/MyExampleApplicationContext.xml -------------------------------------------------------------------------------- /Example/Example-Quick-Start/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/Example-Quick-Start/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /Example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/Example/pom.xml -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuhongyuand/EasyRest-NAS/HEAD/pom.xml --------------------------------------------------------------------------------