mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-11-01 01:21:18 +01:00 
			
		
		
		
	refactor: expose local application server port
This commit is contained in:
		
							parent
							
								
									27e8335f79
								
							
						
					
					
						commit
						94aba370e0
					
				@ -28,11 +28,7 @@ public class SPdfApplication {
 | 
			
		||||
 | 
			
		||||
        if (browserOpen) {
 | 
			
		||||
            try {
 | 
			
		||||
                String port = env.getProperty("local.server.port");
 | 
			
		||||
                if(port == null || port.length() == 0) {
 | 
			
		||||
                	port="8080";
 | 
			
		||||
                }
 | 
			
		||||
                String url = "http://localhost:" + port;
 | 
			
		||||
                String url = "http://localhost:" + getPort();
 | 
			
		||||
 | 
			
		||||
                String os = System.getProperty("os.name").toLowerCase();
 | 
			
		||||
                Runtime rt = Runtime.getRuntime();
 | 
			
		||||
@ -66,17 +62,17 @@ public class SPdfApplication {
 | 
			
		||||
        GeneralUtils.createDir("customFiles/static/");
 | 
			
		||||
        GeneralUtils.createDir("customFiles/templates/");
 | 
			
		||||
 | 
			
		||||
        
 | 
			
		||||
        
 | 
			
		||||
        System.out.println("Stirling-PDF Started.");
 | 
			
		||||
 | 
			
		||||
        String port = System.getProperty("local.server.port");
 | 
			
		||||
        if(port == null || port.length() == 0) {
 | 
			
		||||
        	port="8080";
 | 
			
		||||
        }
 | 
			
		||||
        String url = "http://localhost:" + port;
 | 
			
		||||
        String url = "http://localhost:" + getPort();
 | 
			
		||||
        System.out.println("Navigate to " + url);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
    public static String getPort() {
 | 
			
		||||
        String port = System.getProperty("local.server.port");
 | 
			
		||||
        if (port == null || port.isEmpty()) {
 | 
			
		||||
            port = "8080";
 | 
			
		||||
        }
 | 
			
		||||
        return port;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user