작성
·
594
0
package hello.hellospring;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class HelloSpringApplication {
public static void main(String[] args) {
SpringApplication.run(HelloSpringApplication.class, args);
}
}
HelloSpringApplication 을 실행 시키면 아래처럼 오류가 납니다.
Execution failed for task ':HelloSpringApplication.main()'. > Process 'command 'C:/Users/kimtw/.jdks/corretto-17.0.3/bin/java.exe'' finished with non-zero exit value 1 * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights.
답변 1
0
안녕하세요. ktwmomo님, 공식 서포터즈 OMG입니다.
아래 링크를 참고하여 해결해주세요.
해결이 안될 경우, 문제 상황을 확인할 수 있게 전체화면 캡쳐해주세요.
https://www.inflearn.com/questions/274993
감사합니다.