내 로컬 호스트가 페이지를로드하지 않습니다.
http://localhost:8080/
This site can’t be reached
localhost refused to connect.
새로운 프로젝트가 있고 프로젝트를 실행할 때 오류가 발생하지 않거나 오류가 표시되지 않지만 localhost를 사용하여 보려고하면 위의 오류가 표시됩니다.
내 프로젝트에 대한 세부 정보는 다음과 같습니다.
내 컴퓨터의 Java 버전 :
C : \ WINDOWS \ system32> java -version java 버전 "1.8.0_121"Java (TM) SE 런타임 환경 (빌드 1.8.0_121-b13) Java HotSpot (TM) 64 비트 서버 VM (빌드 25.121-b13, 혼합 모드 )
나는 내가 여기서 뭘 잘못하고 있는지 전혀 모른다. 그리고 다시 나는 내가 실행하는이 클래스를 제외하고는 아무것도 없다.
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
내 POM 파일 :
4.0.0 org.springframework.boot spring-boot-starter-parent 2.4.2 com.example demo 0.0.1-SNAPSHOT demo Demo project for Spring Boot
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
응용 프로그램 로그 :
2021-01-16 19 : 24 : 07.268 정보 23308 --- [main] com.example.demo.DemoApplication : PID 23308 (C : \ Users \ nick \ eclipse-workspace \ C : \ Users \ nick \ eclipse-workspace \ demo에서 XPS89100에 의해 시작된 demo \ target \ classes) 2021-01-16 19 : 24 : 07.270 INFO 23308 --- [main] com.example.demo.DemoApplication : No active 프로필 세트, 기본 프로필로 폴백 : default 2021-01-16 19 : 24 : 07.740 INFO 23308 --- [main] .sdrcRepositoryConfigurationDelegate : DEFAULT 모드에서 SpringData JPA 저장소 부트 스트래핑. 2021-01-16 19 : 24 : 07.752 INFO 23308 --- [main] .sdrcRepositoryConfigurationDelegate : 4ms 만에 Spring 데이터 저장소 스캔을 완료했습니다. 0 개의 JPA 저장소 인터페이스를 찾았습니다. 2021-01-16 19 : 24 : 08.143 정보 23308 --- [
main] osbwembedded.tomcat.TomcatWebServer : 포트로 초기화 된 Tomcat : 8080 (http) 2021-01-16 19 : 24 : 08.151 INFO 23308 --- [
main] o.apache.catalina.core.StandardService : 서비스 시작 [Tomcat] 2021-01-16 19 : 24 : 08.151 INFO 23308 --- [main] org.apache.catalina.core.StandardEngine : 서블릿 엔진 시작 : [Apache Tomcat / 9.0.41] 2021-01-16 19 : 24 : 08.274 정보 23308 --- [
main] oaccC [Tomcat]. [localhost]. [/] : Spring Embedded WebApplicationContext 초기화 2021-01-16 19 : 24 : 08.274 INFO 23308 --- [main] wscServletWebServerApplicationContext : Root WebApplicationContext : 초기화 완료 961 ms 2021-01 -16 19 : 24 : 08.429 INFO 23308 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204 : Processing PersistenceUnitInfo [name : default] 2021-01-16 19 : 24 : 08.473 INFO 23308- -[main] org.hibernate.Version : HHH000412 : Hibernate ORM core version 5.4.27.Final 2021-01-16 19 : 24 : 08.586 INFO 23308 --- [main] o.hibernate.annotations.common.Version : HCANN000001 : Hibernate Commons Annotations {5.1.2.Final} 2021-01-16 19 : 24 : 08.670 INFO 23308 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1-Starting ...