[ad_1]
Asked
Viewed
4 times
I have ran my Spring boot in OS multiple times and keep receiving the same error.
:: Spring Boot :: (v2.2.4.RELEASE)
2022-06-02 16:24:05.678 INFO 13192 — [ main] com.snhu.sslserver.ServerApplication : Starting ServerApplication on MSI with PID 13192 (C:\Users\erics\Downloads\module5_skel_student\target\classes started by erics in C:\Users\erics\Downloads\module5_skel_student)
2022-06-02 16:24:05.687 INFO 13192 — [ main] com.snhu.sslserver.ServerApplication : No active profile set, falling back to default profiles: default
2022-06-02 16:24:07.605 INFO 13192 — [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8443 (https)
2022-06-02 16:24:07.622 INFO 13192 — [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-06-02 16:24:07.622 INFO 13192 — [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.30]
2022-06-02 16:24:07.760 INFO 13192 — [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-06-02 16:24:07.760 INFO 13192 — [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1995 ms
2022-06-02 16:24:08.651 INFO 13192 — [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService ‘applicationTaskExecutor’
2022-06-02 16:24:09.340 INFO 13192 — [ main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
2022-06-02 16:24:09.351 INFO 13192 — [ main] ConditionEvaluationReportLoggingListener :
Below is my pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.snhu</groupId>
<artifactId>ssl-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>ssl-server</name>
<description>ssl-server skeleton for CS-305</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
default
[ad_2]