2011-03-17 2 views

답변

3

난 그냥 플레이 모듈에 대해 읽고 나는 내 문제를 해결할 수 있는지 확인하기 위해 하나 (https://github.com/killdashnine/play-git-plugin)을 쓰기로 결정했습니다 : 내 컨트롤러에서

12:14:46,508 INFO ~ GIT plugin: executing 'git describe' 
12:14:46,513 INFO ~ GIT plugin: revision is V0-beta-7-gac9af80 

: 결과

import java.io.BufferedReader; 
import java.io.InputStreamReader; 

import play.Logger; 
import play.Play; 
import play.PlayPlugin; 

public class GitPlugin extends PlayPlugin { 

     private static String GIT_PLUGIN_PREFIX = "GIT plugin: "; 

     @Override 
     public void onApplicationStart() { 
       Logger.info(GIT_PLUGIN_PREFIX + "executing 'git describe'"); 
       final StringBuffer gitVersion = new StringBuffer(); 
       try { 
         final Process p = Runtime.getRuntime().exec("git describe"); 
         final BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream())); 

         // wait for process to complete 
         p.waitFor(); 

         // read the output 
         String line = reader.readLine(); 
         while(line != null) { 
           gitVersion.append(line); 
           line = reader.readLine(); 
         } 
       } 
       catch(Exception e) { 
         Logger.error(GIT_PLUGIN_PREFIX + "unable to execute 'git describe'"); 
       } 

       // set a property for this value 
       Play.configuration.setProperty("git.revision", gitVersion.toString()); 

       Logger.info(GIT_PLUGIN_PREFIX + "revision is " + gitVersion.toString()); 
     } 
} 

을 :

@Before 
    static void addDefaults() { 
     renderArgs.put("version", Play.configuration.getProperty("git.revision")); 
    } 

물론 이식성이 뛰어나고 개선 될 수 있습니다. 가능한 개선은 구성 파일의 설정을 통해 사용자 정의 명령을 실행할 수있게하는 것입니다.

cat > {apppath}/conf/application_version.properties << EOF 
application.version=`git describe` 
application.buildtime=`date` 
EOF 
... 

과에서를 : 당신이 나처럼 할 수있는 자식의 repo에서 코드를 실행하지 않으면

1

, 난 전쟁 파일을 생성하고이 스크립트에 내가 할거야 빌드 스크립트가 @OnApplicationStart 클래스는 내가 속성

private def readApplicationVersion() { 
    Logger.info("Bootstrap.readApplicationVersion file") 
    Play.id match { 
     case "" | "test" => Play.configuration.put("application.version", "TEST-MODE"); Play.configuration.put("application.buildtime", "YEAH BABY YEAH REALTIME") 
     case _ => addFileProp(VirtualFile.open(Play.applicationPath).child("conf/application_version.properties").inputstream()) 
    } 
} 

private def addFileProp(input: InputStream) { 
    input match { 
     case null => Logger.error("can't find config file, Play id: " + Play.id + ". Will exit now.") 
     case _ => val extendCconfiguration = IO.readUtf8Properties(input); 
     for (key <- extendCconfiguration.keys) { 
      Play.configuration.put(key, extendCconfiguration.get(key)) 
     } 
    } 
} 

그리고 컨트롤러에서

를 추가

object ApplicationVersion extends Controller { 
    def version = { 
     Json("{iamVersion: '"+configuration.getProperty("application.version")+"', buildTime: '"+configuration.getProperty("application.buildtime")+"'}") 
    } 
} 
관련 문제