基于Java和HTML的在线网约车平台设计源码

作品简介

本项目为网约车平台设计源码,采用Java和HTML开发,总文件量为566个,其中包括403个Java源代码文件、60个XML配置文件、40个YAML配置文件、35个Git忽略文件以及少量其他辅助文件。该平台融合了Java、HTML和Lua等多种编程语言,旨在提供便捷的网约车服务体验。

关键词

Java 网约车平台 HTML HTML5 Lua

目录结构

├── .gitignore
  ├── 01_注册中心
    ├── eureka
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── eureka
                  ├── CustomEvent.java
                  ├── EurekaApplication.java
                    ├── config
                    ├── WebSecurityConfig.java
          ├── resources
          ├── application.yml
          ├── application.yml-2
          ├── application.yml-3-e
          ├── application.yml-3-r
  ├── 02_ribbon负载均衡
    ├── api-driver-ribbon
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── driver
                  ├── ApiDriverApplication.java
                    ├── annotation
                    ├── ExcudeRibbonConfig.java
                    ├── controller
                    ├── SmsController.java
                    ├── dto
                    ├── ShortMsgRequest.java
                    ├── ribbonconfig
                    ├── MsbRandomRule.java
                    ├── RibbonConfiguration.java
                    ├── ribbonconfigscan
                    ├── TestConfiguration.java
                    ├── service
                    ├── OrderService.java
                    ├── ShortMsgService.java
                    ├── VerificationCodeService.java
                      ├── impl
                      ├── OrderServiceImpl.java
                      ├── ShortMsgServiceImpl.java
                      ├── VerificationCodeServiceImpl.java
          ├── resources
          ├── application.yml
        ├── test
          ├── java
            ├── com
              ├── api
                ├── passenger
                ├── ApiPassengerApplicationTests.java
  ├── 03_feign声明式调用
    ├── api-passenger-feign-custom
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── passenger
                  ├── ApiPassengerApplication.java
                    ├── annotation
                    ├── ExcudeFeignConfig.java
                    ├── controller
                    ├── GatewayTestController.java
                    ├── OrderController.java
                    ├── SmsController.java
                    ├── TestController.java
                    ├── dto
                    ├── ShortMsgRequest.java
                    ├── fallback
                    ├── SmsClientFallback.java
                    ├── feign
                    ├── ServiceForecast.java
                    ├── ServiceForecastWithoutEureka.java
                      ├── config
                      ├── FeignAuthConfiguration.java
                      ├── interceptor
                      ├── MyBasicAuthRequestInterceptor.java
                    ├── service
                    ├── OrderService.java
                    ├── ShortMsgService.java
                    ├── SmsClient.java
                    ├── VerificationCodeService.java
                      ├── impl
                      ├── OrderServiceImpl.java
                      ├── ShortMsgServiceImpl.java
                      ├── VerificationCodeServiceImpl.java
          ├── resources
          ├── application.yml
        ├── test
          ├── java
            ├── com
              ├── api
                ├── passenger
                ├── ApiPassengerApplicationTests.java
    ├── api-passenger-feign
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── passenger
                  ├── ApiPassengerApplication.java
                    ├── annotation
                    ├── ExcudeFeignConfig.java
                    ├── controller
                    ├── GatewayTestController.java
                    ├── OrderController.java
                    ├── SmsController.java
                    ├── TestController.java
                    ├── dto
                    ├── ShortMsgRequest.java
                    ├── fallback
                    ├── SmsClientFallback.java
                    ├── feign
                    ├── ServiceForecast.java
                      ├── config
                      ├── FeignAuthConfiguration.java
                      ├── interceptor
                      ├── MyBasicAuthRequestInterceptor.java
                    ├── schedule
                    ├── ScheduleTest.java
                    ├── service
                    ├── OrderService.java
                    ├── ShortMsgService.java
                    ├── SmsClient.java
                    ├── VerificationCodeService.java
                      ├── impl
                      ├── OrderServiceImpl.java
                      ├── ShortMsgServiceImpl.java
                      ├── VerificationCodeServiceImpl.java
          ├── resources
          ├── application.yml
        ├── test
          ├── java
            ├── com
              ├── api
                ├── passenger
                ├── ApiPassengerApplicationTests.java
  ├── 04_熔断
    ├── api-driver
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── driver
                  ├── ApiDriverApplication.java
                    ├── annotation
                    ├── ExcudeRibbonConfig.java
                    ├── constant
                    ├── HttpUrlConstants.java
                    ├── controller
                    ├── SmsController.java
                    ├── TestController.java
                    ├── dto
                    ├── ShortMsgRequest.java
                    ├── exception
                    ├── BusinessException.java
                    ├── HystrixIgnoreException.java
                    ├── ribbonconfig
                    ├── MsbRandomRule.java
                    ├── RibbonConfiguration.java
                    ├── ribbonconfigscan
                    ├── TestConfiguration.java
                    ├── service
                    ├── OrderService.java
                    ├── RestTemplateRequestService.java
                    ├── ShortMsgService.java
                    ├── VerificationCodeService.java
                      ├── impl
                      ├── OrderServiceImpl.java
                      ├── RestTemplateRequestServiceImpl.java
                      ├── ShortMsgServiceImpl.java
                      ├── VerificationCodeServiceImpl.java
          ├── resources
          ├── application.yml
        ├── test
          ├── java
            ├── com
              ├── api
                ├── passenger
                ├── ApiPassengerApplicationTests.java
    ├── api-passenger
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── passenger
                  ├── ApiPassengerApplication.java
                    ├── annotation
                    ├── ExcudeFeignConfig.java
                    ├── controller
                    ├── GatewayTestController.java
                    ├── OrderController.java
                    ├── SmsController.java
                    ├── TestController.java
                    ├── dto
                    ├── ShortMsgRequest.java
                    ├── fallback
                    ├── SmsClientFallback.java
                    ├── SmsClientFallbackFactory.java
                    ├── feign
                    ├── ServiceForecast.java
                    ├── SmsClient.java
                      ├── config
                      ├── FeignAuthConfiguration.java
                      ├── FeignDisableHystrixConfiguration.java
                      ├── interceptor
                      ├── MyBasicAuthRequestInterceptor.java
                    ├── service
                    ├── OrderService.java
                    ├── ShortMsgService.java
                    ├── VerificationCodeService.java
                      ├── impl
                      ├── OrderServiceImpl.java
                      ├── ShortMsgServiceImpl.java
                      ├── VerificationCodeServiceImpl.java
          ├── resources
          ├── application.yml
        ├── test
          ├── java
            ├── com
              ├── api
                ├── passenger
                ├── ApiPassengerApplicationTests.java
    ├── service-sms
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── sms
                  ├── ServiceSmsApplication.java
                    ├── constant
                    ├── SmsStatusEnum.java
                    ├── controller
                    ├── GatewayTestController.java
                    ├── SendController.java
                    ├── TestController.java
                    ├── dao
                    ├── SmsDao.java
                    ├── SmsTemplateDao.java
                    ├── mapper
                    ├── SmsMapper.java
                    ├── SmsTemplateMapper.java
                    ├── service
                    ├── AliService.java
                      ├── impl
                      ├── AliServiceImpl.java
          ├── resources
          ├── application.yml
            ├── mybatis
              ├── mapper
              ├── SmsMapper.xml
              ├── SmsTemplateMapper.xml
            ├── mybatis.cfg.xml
        ├── test
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── sms
                  ├── ServiceSmsApplicationTests.java
├── LICENSE
  ├── alibaba-seata
    ├── alibaba-seata-rm-one
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── one
                  ├── SeataRmOneApplication.java
                    ├── controller
                    ├── TestController.java
                    ├── entity
                    ├── One.java
                    ├── mapper
                    ├── OneMapper.java
                    ├── service
                    ├── RmOneService.java
          ├── resources
          ├── application.yml
          ├── file.conf
            ├── mybatis
              ├── mapper
              ├── OneMapper.xml
            ├── mybatis.cfg.xml
          ├── registry.conf
        ├── test
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── sms
                  ├── ServiceSmsApplicationTests.java
    ├── alibaba-seata-rm-three
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── three
                  ├── DataSourceConfiguration.java
                  ├── SeataRmThreeApplication.java
                    ├── controller
                    ├── TestController.java
                    ├── entity
                    ├── Three.java
                    ├── mapper
                    ├── ThreeMapper.java
                    ├── service
                    ├── RmThreeService.java
          ├── resources
          ├── application.yml
          ├── file.conf
            ├── mybatis
              ├── mapper
              ├── OneMapper.xml
            ├── mybatis.cfg.xml
          ├── registry.conf
        ├── test
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── sms
                  ├── ServiceSmsApplicationTests.java
    ├── alibaba-seata-rm-two
    ├── .gitignore
    ├── pom.xml
      ├── src
        ├── main
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── two
                  ├── DataSourceConfiguration.java
                  ├── SeataRmTwoApplication.java
                    ├── controller
                    ├── TestController.java
                    ├── entity
                    ├── Two.java
                    ├── mapper
                    ├── TwoMapper.java
                    ├── service
                    ├── RmTwoService.java
          ├── resources
          ├── application.yml
          ├── file.conf
            ├── mybatis
              ├── mapper
              ├── TwoMapper.xml
            ├── mybatis.cfg.xml
          ├── registry.conf
        ├── test
          ├── java
            ├── com
              ├── online
                ├── taxi
                  ├── sms
                  ├── ServiceSmsApplicationTests.java
  ├── pom.xml
  ├── api-driver-ribbon
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── driver
                ├── ApiDriverApplication.java
                  ├── annotation
                  ├── ExcudeRibbonConfig.java
                  ├── controller
                  ├── SmsController.java
                  ├── dto
                  ├── ShortMsgRequest.java
                  ├── ribbonconfig
                  ├── MsbRandomRule.java
                  ├── RibbonConfiguration.java
                  ├── ribbonconfigscan
                  ├── TestConfiguration.java
                  ├── service
                  ├── OrderService.java
                  ├── ShortMsgService.java
                  ├── VerificationCodeService.java
                    ├── impl
                    ├── OrderServiceImpl.java
                    ├── ShortMsgServiceImpl.java
                    ├── VerificationCodeServiceImpl.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── api
              ├── passenger
              ├── ApiPassengerApplicationTests.java
  ├── api-driver
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── driver
                ├── ApiDriverApplication.java
                  ├── annotation
                  ├── ExcudeRibbonConfig.java
                  ├── constant
                  ├── HttpUrlConstants.java
                  ├── controller
                  ├── GrabOrderController.java
                  ├── SmsController.java
                  ├── TestController.java
                  ├── dto
                  ├── ShortMsgRequest.java
                  ├── exception
                  ├── BusinessException.java
                  ├── HystrixIgnoreException.java
                  ├── request
                  ├── HelloRequest.java
                  ├── ribbonconfig
                  ├── MsbRandomRule.java
                  ├── RibbonConfiguration.java
                  ├── ribbonconfigscan
                  ├── TestConfiguration.java
                  ├── service
                  ├── OrderService.java
                  ├── RestTemplateRequestService.java
                  ├── ShortMsgService.java
                  ├── VerificationCodeService.java
                    ├── impl
                    ├── OrderServiceImpl.java
                    ├── RestTemplateRequestServiceImpl.java
                    ├── ShortMsgServiceImpl.java
                    ├── VerificationCodeServiceImpl.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── api
              ├── passenger
              ├── ApiPassengerApplicationTests.java
  ├── api-listen-order
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── ApiListenOrderApplication.java
                ├── controller
                ├── SendOrderController.java
                ├── ServiceInstanceController.java
                ├── test.java
                ├── listen
                  ├── controller
                  ├── ListenController.java
                  ├── response
                  ├── PreGrabResponse.java
                  ├── service
                  ├── ListenService.java
                    ├── impl
                    ├── ListenServiceImpl.java
        ├── resources
        ├── application.yml
        ├── application.yml-d
          ├── public
          ├── index.html
  ├── 说明.txt
  ├── api-passenger-feign-custom
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── passenger
                ├── ApiPassengerApplication.java
                  ├── annotation
                  ├── ExcudeFeignConfig.java
                  ├── controller
                  ├── GatewayTestController.java
                  ├── OrderController.java
                  ├── SmsController.java
                  ├── TestController.java
                  ├── dto
                  ├── ShortMsgRequest.java
                  ├── fallback
                  ├── SmsClientFallback.java
                  ├── feign
                  ├── ServiceForecast.java
                  ├── ServiceForecastWithoutEureka.java
                    ├── config
                    ├── FeignAuthConfiguration.java
                    ├── interceptor
                    ├── MyBasicAuthRequestInterceptor.java
                  ├── service
                  ├── OrderService.java
                  ├── ShortMsgService.java
                  ├── SmsClient.java
                  ├── VerificationCodeService.java
                    ├── impl
                    ├── OrderServiceImpl.java
                    ├── ShortMsgServiceImpl.java
                    ├── VerificationCodeServiceImpl.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── api
              ├── passenger
              ├── ApiPassengerApplicationTests.java
  ├── api-passenger-feign
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── passenger
                ├── ApiPassengerApplication.java
                  ├── annotation
                  ├── ExcudeFeignConfig.java
                  ├── controller
                  ├── GatewayTestController.java
                  ├── OrderController.java
                  ├── SmsController.java
                  ├── TestController.java
                  ├── dto
                  ├── ShortMsgRequest.java
                  ├── fallback
                  ├── SmsClientFallback.java
                  ├── feign
                  ├── ServiceForecast.java
                    ├── config
                    ├── FeignAuthConfiguration.java
                    ├── interceptor
                    ├── MyBasicAuthRequestInterceptor.java
                  ├── schedule
                  ├── ScheduleTest.java
                  ├── service
                  ├── OrderService.java
                  ├── ShortMsgService.java
                  ├── SmsClient.java
                  ├── VerificationCodeService.java
                    ├── impl
                    ├── OrderServiceImpl.java
                    ├── ShortMsgServiceImpl.java
                    ├── VerificationCodeServiceImpl.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── api
              ├── passenger
              ├── ApiPassengerApplicationTests.java
  ├── api-passenger
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── passenger
                ├── ApiPassengerApplication.java
                  ├── annotation
                  ├── ExcudeFeignConfig.java
                  ├── controller
                  ├── AuthController.java
                  ├── GatewayTestController.java
                  ├── OrderController.java
                  ├── SmsController.java
                  ├── TestController.java
                  ├── dto
                  ├── ShortMsgRequest.java
                  ├── fallback
                  ├── SmsClientFallback.java
                  ├── SmsClientFallbackFactory.java
                  ├── feign
                  ├── ServiceForecast.java
                  ├── SmsClient.java
                    ├── config
                    ├── FeignAuthConfiguration.java
                    ├── FeignDisableHystrixConfiguration.java
                    ├── interceptor
                    ├── MyBasicAuthRequestInterceptor.java
                  ├── request
                  ├── UserAuthRequest.java
                  ├── response
                  ├── UserAuthResponse.java
                  ├── service
                  ├── OrderService.java
                  ├── ShortMsgService.java
                  ├── VerificationCodeService.java
                    ├── impl
                    ├── OrderServiceImpl.java
                    ├── ShortMsgServiceImpl.java
                    ├── VerificationCodeServiceImpl.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── api
              ├── passenger
              ├── ApiPassengerApplicationTests.java
  ├── cloud-admin
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── admin
                ├── CloudAdminApplication.java
                ├── CustomEvent.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── admin
                ├── CloudAdminApplicationTests.java
  ├── config-client-diy
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── verificationcode
                ├── ConfigClientDiyApplication.java
                  ├── event
                  ├── BusConfiguration.java
                  ├── CustomRemoteApplicationEvent.java
                  ├── PublishController.java
                  ├── rabbitmq
                  ├── MyStreamListener.java
                  ├── MyStreamSend.java
                  ├── request
                  ├── CodeVerifyRequest.java
        ├── resources
        ├── bootstrap.yml
      ├── test
        ├── java
          ├── com
            ├── netcar
              ├── verificationcode
              ├── VerificationCodeApplicationTests.java
  ├── config-client
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── verificationcode
                ├── VerificationCodeApplication.java
                  ├── component
                  ├── GitConfig.java
                  ├── constant
                  ├── VerifyCodeConstant.java
                  ├── controller
                  ├── ConfigController.java
                  ├── ConfigController2.java
                  ├── WebhookController.java
                  ├── event
                  ├── BusConfiguration.java
                  ├── CustomRemoteApplicationEvent.java
                  ├── PublishController.java
                  ├── request
                  ├── CodeVerifyRequest.java
                  ├── service
                  ├── ConfigService.java
                  ├── VerifyCodeService.java
                    ├── impl
                    ├── ConfigServiceImpl.java
                    ├── VerifyCodeServiceImpl.java
        ├── resources
        ├── bootstrap-8011.yml
        ├── bootstrap-8012.yml
        ├── bootstrap.yml
      ├── test
        ├── java
          ├── com
            ├── netcar
              ├── verificationcode
              ├── VerificationCodeApplicationTests.java
  ├── eureka
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── eureka
                ├── CustomEvent.java
                ├── EurekaApplication.java
                  ├── config
                  ├── WebSecurityConfig.java
        ├── resources
        ├── application.yml
        ├── application.yml-2
        ├── application.yml-3-e
        ├── application.yml-3-r
  ├── hystrix-dashboard
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── HystrixDashboardApplication.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── HystrixDashboardApplicationTests.java
  ├── mq-demo
    ├── src
      ├── mq
        ├── client
        ├── MqClient.java
        ├── config
        ├── Broker.java
        ├── server
        ├── BrokerServer.java
  ├── online-taxi-common
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── common
                  ├── constant
                  ├── CommonStatusEnum.java
                  ├── IdentityConstant.java
                  ├── RedisKeyConstant.java
                  ├── dto
                  ├── BaseResponse.java
                  ├── ResponseResult.java
                    ├── appUpdate
                    ├── AppUpdateVersionRequest.java
                    ├── order
                    ├── BaseOrder.java
                    ├── ForecastRequest.java
                    ├── ForecastResponse.java
                    ├── passengeruser
                    ├── LoginRequest.java
                    ├── sms
                    ├── SmsSendRequest.java
                    ├── SmsTemplateDto.java
                    ├── verificationcode
                    ├── VerifyCodeResponse.java
                  ├── entity
                  ├── AppVersionUpdate.java
                  ├── Order.java
                  ├── OrderLock.java
                  ├── PassengerInfo.java
                  ├── Sms.java
                  ├── SmsTemplate.java
                  ├── util
                  ├── JwtUtil.java
                  ├── Md5Util.java
                  ├── PhoneUtil.java
                  ├── RSAEncrypt.java
                  ├── Sha1Util.java
        ├── resources
        ├── generatorConfig.xml
          ├── mybatis
            ├── mapper
            ├── OrderMapper.xml
  ├── online-taxi-config-server
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── configserver
                ├── OnlineTaxiConfigServerApplication.java
                  ├── controller
                  ├── ConfigControllerTest.java
        ├── resources
        ├── application.yml
        ├── bootstrap.ymlb
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── configserver
                ├── OnlineTaxiConfigServerApplicationTests.java
  ├── online-taxi-gateway
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── gateway
                ├── OnlineTaxiGatewayApplication.java
                  ├── filter
                  ├── AuthFilter.java
                  ├── RateFilter.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── gateway
                ├── OnlineTaxiGatewayApplicationTests.java
  ├── online-taxi-zuul
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── zuul
                ├── OnlineTaxiZuulApplication.java
                  ├── fallback
                  ├── MsbFallback.java
                  ├── filter
                  ├── AuthFilter.java
                  ├── PreFilter.java
                  ├── RateFilter.java
                  ├── RequestCheckFilter.java
                  ├── util
                  ├── CiphertextBlackList.java
        ├── resources
        ├── application.yml
        ├── application.yml-eureka服务名
        ├── application.yml-前缀
        ├── application.yml-备份
        ├── application.yml-忽略
        ├── application.yml-敏感
        ├── application.yml-服务名配置
        ├── application.yml-自定义服务名
        ├── application.yml-自定义服务名配置 负载均衡
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── AndroidRequestTest.java
├── readme.txt
  ├── service-app-update
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── app
                ├── ServiceAppUpdateApplication.java
                  ├── controller
                  ├── AppVersionUpdateController.java
                  ├── dao
                  ├── AppVersionUpdateMapper.java
                  ├── service
                  ├── AppVersionUpdateService.java
                    ├── impl
                    ├── AppVersionUpdateServiceImpl.java
        ├── resources
        ├── application.yml
          ├── mybatis
            ├── mapper
            ├── AppVersionUpdateMapper.xml
          ├── mybatis.cfg.xml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── app
                ├── ServiceAppUpdateApplicationTests.java
  ├── service-jms-consumer
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── jms
                  ├── consumer
                  ├── ServiceJmsConsumerApplication.java
                    ├── component
                    ├── ConsumerQueue.java
                    ├── ConsumerTopic.java
                    ├── config
                    ├── ActiveMQConfig.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── wallet
                ├── ServiceWalletApplicationTests.java
  ├── service-jms-produce
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── jms
                  ├── produce
                  ├── ServiceJmsProduceApplication.java
                    ├── component
                    ├── ConsumerQueue.java
                    ├── ConsumerTopic.java
                    ├── config
                    ├── ActiveMQConfig.java
                    ├── controller
                    ├── ProducerController.java
                    ├── service
                    ├── ProduceService.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── wallet
                ├── ServiceWalletApplicationTests.java
  ├── service-order-dispatch
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── order
                  ├── dispatch
                  ├── ServiceOrderDispatchApplication.java
                    ├── controller
                    ├── DispatchOrder.java
                    ├── service
                    ├── DispatchService.java
                      ├── impl
                      ├── DispatchServiceImpl.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── order
                  ├── dispatch
                  ├── ServiceOrderDispatchApplicationTests.java
  ├── service-order
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── order
                ├── ServiceOrderApplication.java
                  ├── config
                  ├── RedisConfig.java
                  ├── RedisSentinelProperties.java
                  ├── controller
                  ├── GrabOrderController.java
                  ├── dao
                  ├── OrderLockMapper.java
                  ├── OrderMapper.java
                  ├── lock
                  ├── MysqlLock.java
                  ├── RedisLock.java
                  ├── service
                  ├── GrabService.java
                  ├── OrderService.java
                  ├── RenewGrabLockService.java
                    ├── impl
                    ├── GrabJvmLockServiceImpl.java
                    ├── GrabMysqlLockServiceImpl.java
                    ├── GrabNoLockServiceImpl.java
                    ├── GrabRedisLockServiceImpl.java
                    ├── GrabRedisRedissonRedLockLockServiceImpl.java
                    ├── GrabRedisRedissonServiceImpl.java
                    ├── OrderServiceImpl.java
                    ├── RenewGrabLockServiceImpl.java
                    ├── StudyService.java
        ├── resources
        ├── application.yml
          ├── luascript
          ├── lock.lua
          ├── mybatis
            ├── mapper
            ├── OrderLockMapper.xml
            ├── OrderMapper.xml
          ├── mybatis.cfg.xml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── order
                ├── GrabOrderLockTest.java
                ├── GrabOrderSynTest.java
                ├── ServiceOrderApplicationTests.java
  ├── service-passenger-user
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── passenger
                  ├── user
                  ├── ServicePassengerUserApplication.java
                    ├── controller
                    ├── AddressController.java
                    ├── LoginController.java
                    ├── dao
                    ├── PassengerInfoDao.java
                    ├── mapper
                    ├── PassengerInfoMapper.java
                    ├── service
                    ├── TokenService.java
                      ├── impl
                      ├── TokenServiceImpl.java
        ├── resources
        ├── application.yml
          ├── mybatis
            ├── mapper
            ├── PassengerInfoMapper.xml
          ├── mybatis.cfg.xml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── passenger
                  ├── user
                  ├── ServicePassengerUserApplicationTests.java
  ├── service-sms
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── sms
                ├── ServiceSmsApplication.java
                  ├── constant
                  ├── SmsStatusEnum.java
                  ├── controller
                  ├── GatewayTestController.java
                  ├── SendController.java
                  ├── TestController.java
                  ├── dao
                  ├── SmsDao.java
                  ├── SmsTemplateDao.java
                  ├── mapper
                  ├── SmsMapper.java
                  ├── SmsTemplateMapper.java
                  ├── service
                  ├── AliService.java
                    ├── impl
                    ├── AliServiceImpl.java
        ├── resources
        ├── application.yml
          ├── mybatis
            ├── mapper
            ├── SmsMapper.xml
            ├── SmsTemplateMapper.xml
          ├── mybatis.cfg.xml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── sms
                ├── ServiceSmsApplicationTests.java
  ├── service-valuation
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── valuation
                ├── ServiceValuationApplication.java
                  ├── config
                  ├── WebSecurityConfig.java
                  ├── controller
                  ├── ForecastController.java
        ├── resources
        ├── application.yml
  ├── service-verification-code
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── verificationcode
                ├── VerificationCodeApplication.java
                  ├── component
                  ├── GitConfig.java
                  ├── constant
                  ├── VerifyCodeConstant.java
                  ├── controller
                  ├── ConfigController.java
                  ├── VerifyCodeController.java
                  ├── request
                  ├── CodeVerifyRequest.java
                  ├── service
                  ├── ConfigService.java
                  ├── VerifyCodeService.java
                    ├── impl
                    ├── ConfigServiceImpl.java
                    ├── VerifyCodeServiceImpl.java
        ├── resources
        ├── bootstrap-8011.yml
        ├── bootstrap-8012.yml
        ├── bootstrap.yml
      ├── test
        ├── java
          ├── com
            ├── netcar
              ├── verificationcode
              ├── VerificationCodeApplicationTests.java
  ├── service-wallet
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── wallet
                ├── ServiceWalletApplication.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
                ├── wallet
                ├── ServiceWalletApplicationTests.java
  ├── study-bus
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── StudyBusApplication.java
                ├── config
                ├── RabbitMQConfig.java
                ├── listener
                ├── MyRabbitListener.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── StudyBusApplicationTests.java
  ├── study-hystrix-turbine
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── HystrixDashboardApplication.java
        ├── resources
        ├── application.yml
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── HystrixDashboardApplicationTests.java
  ├── study-hystrix
  ├── .gitignore
  ├── pom.xml
    ├── src
      ├── main
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── HelloWorldHystrixCommand.java
              ├── HelloWorldHystrixCommand2.java
              ├── StudyHystrixApplication.java
        ├── resources
        ├── application.properties
      ├── test
        ├── java
          ├── com
            ├── online
              ├── taxi
              ├── StudyHystrixApplicationTests.java
创作时间: