1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-09-29 08:00:12 +02:00
Stirling-PDF/src/main/java/stirling/software/SPDF/config/AppConfig.java

22 lines
661 B
Java
Raw Normal View History

package stirling.software.SPDF.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class AppConfig {
@Bean(name = "appVersion")
public String appVersion() {
String version = getClass().getPackage().getImplementationVersion();
return (version != null) ? version : "0.3.3";
}
@Bean(name = "appName")
public String appName() {
String appName = System.getProperty("AppName");
if(appName == null)
appName = System.getenv("APP_NAME");
return (appName != null) ? appName : "Stirling PDF";
}
}