├── .github └── workflows │ └── release.yml ├── .gitignore ├── README.md ├── application.yml ├── hysteria-config.yaml ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── vevc │ │ │ ├── AppRunner.java │ │ │ ├── JavaXahApplication.java │ │ │ ├── config │ │ │ ├── AppConfig.java │ │ │ └── ApplicationYamlVo.java │ │ │ ├── service │ │ │ ├── AbstractAppService.java │ │ │ ├── AppService.java │ │ │ └── impl │ │ │ │ ├── ArgoServiceImpl.java │ │ │ │ ├── Hy2ServiceImpl.java │ │ │ │ └── XrayServiceImpl.java │ │ │ └── util │ │ │ └── TlsCertGenerator.java │ └── resources │ │ └── application.yml └── test │ └── java │ └── com │ └── github │ └── vevc │ └── JavaXahApplicationTests.java └── xray-config.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/README.md -------------------------------------------------------------------------------- /application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/application.yml -------------------------------------------------------------------------------- /hysteria-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/hysteria-config.yaml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/AppRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/AppRunner.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/JavaXahApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/JavaXahApplication.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/config/AppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/config/AppConfig.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/config/ApplicationYamlVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/config/ApplicationYamlVo.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/service/AbstractAppService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/service/AbstractAppService.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/service/AppService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/service/AppService.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/service/impl/ArgoServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/service/impl/ArgoServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/service/impl/Hy2ServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/service/impl/Hy2ServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/service/impl/XrayServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/service/impl/XrayServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/github/vevc/util/TlsCertGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/java/com/github/vevc/util/TlsCertGenerator.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/test/java/com/github/vevc/JavaXahApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/src/test/java/com/github/vevc/JavaXahApplicationTests.java -------------------------------------------------------------------------------- /xray-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vevc/java-xah/HEAD/xray-config.json --------------------------------------------------------------------------------