X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2FDashboardApplication.java;h=333c53222fa38e168e47ffafbcd270275f8c7656;hb=44203c43bb16a87eb54cc97431a026e111842c97;hp=8c86a609aa9bf0ac56b9dd74bc6bac76118ab6c4;hpb=be7a01eda7e4fb9f97a18009d727e6a0692e9399;p=portal%2Fric-dashboard.git diff --git a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/DashboardApplication.java b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/DashboardApplication.java index 8c86a609..333c5322 100644 --- a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/DashboardApplication.java +++ b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/DashboardApplication.java @@ -2,7 +2,7 @@ * ========================LICENSE_START================================= * O-RAN-SC * %% - * Copyright (C) 2019 AT&T Intellectual Property and Nokia + * Copyright (C) 2019 AT&T Intellectual Property * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,8 +17,10 @@ * limitations under the License. * ========================LICENSE_END=================================== */ + package org.oransc.ric.portal.dashboard; +import java.io.IOException; import java.lang.invoke.MethodHandles; import org.slf4j.Logger; @@ -28,29 +30,31 @@ import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.ComponentScan; @SpringBootApplication -// Limit the annotation scan to the dashboard classes; -// exclude the generated client classes! +// Limit scan to dashboard classes; exclude generated API classes @ComponentScan("org.oransc.ric.portal.dashboard") public class DashboardApplication { private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); - public static void main(String[] args) { + public static void main(String[] args) throws IOException { SpringApplication.run(DashboardApplication.class, args); - // Force this onto the console by using level WARN - logger.warn("main: version '{}' successful start", getVersion()); + // Ensure this appears on the console by using level WARN + logger.warn("main: version '{}' successful start", + getImplementationVersion(MethodHandles.lookup().lookupClass())); } /** - * Gets version details. + * Gets version details for the specified class. + * + * @param clazz + * Class to get the version * * @return the value of the MANIFEST.MF property Implementation-Version as * written by maven when packaged in a jar; 'unknown' otherwise. */ - private static String getVersion() { - Class clazz = MethodHandles.lookup().lookupClass(); + public static String getImplementationVersion(Class clazz) { String classPath = clazz.getResource(clazz.getSimpleName() + ".class").toString(); - return classPath.startsWith("jar") ? clazz.getPackage().getImplementationVersion() : "unknown"; + return classPath.startsWith("jar") ? clazz.getPackage().getImplementationVersion() : "unknown-not-jar"; } }