摘要:需求是能夠查看當前應用對應的是哪個源碼版本,什么時候編譯的,以確定某些錯誤是因為沒有部署新版本導致的,還是存在未解決。基本思路是在編譯之前,把構建時間和版本寫入一個文本文件中,運行時由后臺代碼讀取,發送給前端。
需求是能夠查看當前web應用對應的是哪個源碼版本,什么時候編譯的,以確定某些錯誤是因為沒有部署新版本導致的,還是存在未解決bug。
對sbt和scala不熟,所以這個方案可能很笨拙,但能解決問題?;舅悸肥窃诰幾g之前,把構建時間和GIT版本寫入一個文本文件中,運行時由后臺java代碼讀取,發送給前端。
sbt文件可以是.sbt后綴,也可以是.scala后綴,如果是.scala后綴,則限制很少,可以隨意做處理,但一般使用的是.sbt后綴文件。.sbt文件中只能寫函數,所以把構建信息寫入文件的操作都放在函數中。
在.sbt文件中添加以下內容:
import java.text.SimpleDateFormat import java.util.Date ... //函數NowDate取當前時間也就是構建時間 def NowDate(): String = { val now: Date = new Date() val dateFormat: SimpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss") val date = dateFormat.format(now) return date } //取GIT的header并寫入public文件夾下的文本文件,同時也把構建時間寫入另一個文本文件 def createGitHeaderFile(dir:String):sbt.File={ val propFile = sourceDir("/public/data/gitv.txt") try{ val h =Process("git rev-parse HEAD").lines.head IO.write(propFile, h) }catch{ case ex:Exception => { ex.printStackTrace() IO.write(propFile, "ERROR_GET_GIT_HEADER_FAIL") } } val btFile = sourceDir("/public/data/buildtime.txt") val nowText = NowDate() IO.write(btFile, nowText) return file(s"${file(".").getAbsolutePath}/$dir") } //這樣寫其實只是為了把git版本header寫入文件public/data/gitv.txt //這里指定額外的源文件路徑,可以調用函數,所以利用這個機會調用上面定義的函數,把構建信息寫入 unmanagedSourceDirectories in Compile ++= Seq( createGitHeaderFile("/scala") )
在web項目中的java文件讀取構建信息,然后可以進行處理或者發送給前端
istr = env.resourceAsStream("public/data/gitv.txt"); if (istr.nonEmpty()){ InputStream i=istr.get(); BufferedReader reader = new BufferedReader(new InputStreamReader(i)); try { String s = reader.readLine(); if (s!=null){ gitHeader=s; } } catch (IOException e) { e.printStackTrace(); System.out.println("cannot read public/data/gitv.txt"); } } istr = env.resourceAsStream("public/data/buildtime.txt"); if (istr.nonEmpty()){ InputStream i=istr.get(); BufferedReader reader = new BufferedReader(new InputStreamReader(i)); try { String s = reader.readLine(); if (s!=null){ this.buildTime=s; } } catch (IOException e) { e.printStackTrace(); System.out.println("cannot read public/data/buildtime.txt"); } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/73811.html
安裝工具 pip install cookiecutter 獲取模板 cookiecutter https://github.com/audreyr/cookiecutter-pypackage.git 生成項目 timger-mac:scala_sbt_tool timger$ cookiecutter https://github.com/audreyr/cookiecutter...
摘要:為了使用最新的,升級到配置修改根據官網的升級指南,修改文件,更改插件版本號文件中,把和單獨加入。此文件為首頁的模板。推測可能是版本和版本的首頁模板不同,于是到官網下載版本的,找到并覆蓋項目的相應文件。添加插件的語句至此,升級成功完成。 為了使用最新的Play WS Api,升級到play 2.6.21 1.配置修改 根據官網的升級指南,修改plugins.sbt文件,更改插件版本號:a...
閱讀 3404·2021-10-11 11:06
閱讀 2189·2019-08-29 11:10
閱讀 1949·2019-08-26 18:18
閱讀 3257·2019-08-26 13:34
閱讀 1562·2019-08-23 16:45
閱讀 1040·2019-08-23 16:29
閱讀 2801·2019-08-23 13:11
閱讀 3231·2019-08-23 12:58