PropertyDeploy.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. package com.lqkj.link.config;
  2. import okio.BufferedSink;
  3. import okio.Okio;
  4. import org.apache.commons.lang3.StringUtils;
  5. import org.slf4j.Logger;
  6. import org.slf4j.LoggerFactory;
  7. import org.springframework.core.io.ClassPathResource;
  8. import org.yaml.snakeyaml.Yaml;
  9. import java.io.File;
  10. import java.io.IOException;
  11. import java.io.InputStream;
  12. import java.nio.file.Files;
  13. import java.nio.file.Paths;
  14. import java.util.LinkedHashMap;
  15. import java.util.Scanner;
  16. /**
  17. * 环境文件部署
  18. */
  19. public class PropertyDeploy {
  20. private final Logger logger = LoggerFactory.getLogger(this.getClass());
  21. public static final String PropertyDirPath = "./config";
  22. public static final String PropertyFilePath = PropertyDirPath + "/application.yml";
  23. /**
  24. * 查询文件是否存在
  25. *
  26. * @return
  27. */
  28. private boolean isPropertyFileExist() {
  29. return Files.exists(Paths.get(PropertyFilePath));
  30. }
  31. /**
  32. * 数据库链接询问
  33. */
  34. private void inputDataBaseConfig() {
  35. Scanner scanner = new Scanner(System.in);
  36. System.out.println("请输入数据库IP:");
  37. String ip = scanner.nextLine();
  38. System.out.println("请输入数据库端口:");
  39. String port = scanner.nextLine();
  40. System.out.println("请输入数据库名称");
  41. String dbName = scanner.nextLine();
  42. System.out.println("请输入数据库用户名:");
  43. String userName = scanner.nextLine();
  44. System.out.println("请输入数据库密码");
  45. String passWord = scanner.nextLine();
  46. System.out.println("指定server绑定的地址");
  47. String address = scanner.nextLine();
  48. createConfigureFile(ip, port, dbName, userName, passWord, address);
  49. }
  50. /**
  51. * 创建配置文件
  52. */
  53. public void createConfigureFile(String ip, String port, String dbName, String userName, String passWord, String address) {
  54. if (StringUtils.isEmpty(ip)) {
  55. ip = "127.0.0.1";
  56. }
  57. if (StringUtils.isEmpty(port)) {
  58. port = "5432";
  59. }
  60. File applicationFile = new File(PropertyFilePath);
  61. ClassPathResource resource = new ClassPathResource("application-install.yml");
  62. Yaml yaml = new Yaml();
  63. BufferedSink sink = null;
  64. InputStream inputStream = null;
  65. try {
  66. Files.createDirectories(Paths.get(PropertyDirPath));
  67. Files.createFile(Paths.get(PropertyFilePath));
  68. inputStream = resource.getInputStream();
  69. LinkedHashMap<String, LinkedHashMap> application = yaml.load(inputStream);
  70. LinkedHashMap<String, Object> dateSource = (LinkedHashMap<String, Object>) application.get("spring").get("datasource");
  71. LinkedHashMap<String, Object> hikari = (LinkedHashMap<String, Object>) dateSource.get("hikari");
  72. dateSource.put("url", "jdbc:postgresql://" + ip + ":" + port + "/" + dbName);
  73. hikari.put("username", userName);
  74. hikari.put("password", passWord);
  75. LinkedHashMap<String, Object> serverAddress = (LinkedHashMap<String, Object>) application.get("server");
  76. serverAddress.put("address", address);
  77. sink = Okio.buffer(Okio.sink(applicationFile));
  78. sink.write(yaml.dump(application).getBytes());
  79. sink.flush();
  80. } catch (IOException e) {
  81. e.printStackTrace();
  82. } finally {
  83. try {
  84. if (sink != null) {
  85. sink.close();
  86. }
  87. if (inputStream != null) {
  88. inputStream.close();
  89. }
  90. } catch (Exception e) {
  91. e.printStackTrace();
  92. }
  93. }
  94. }
  95. /**
  96. * 部署文件
  97. */
  98. public void deploy() {
  99. try {
  100. if (!isPropertyFileExist()) {
  101. inputDataBaseConfig();
  102. }
  103. } catch (Exception e) {
  104. logger.error(e.getMessage(), e);
  105. }
  106. }
  107. }