Serve login page without using redirect
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / DashboardApplication.java
index 4cf2fd2..fb09ee7 100644 (file)
@@ -19,6 +19,7 @@
  */
 package org.oransc.ric.portal.dashboard;
 
+import java.io.IOException;
 import java.lang.invoke.MethodHandles;
 
 import org.slf4j.Logger;
@@ -28,16 +29,15 @@ 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
+               // Ensure this appears on the console by using level WARN
                logger.warn("main: version '{}' successful start",
                                getImplementationVersion(MethodHandles.lookup().lookupClass()));
        }