[ERROR]org.springframework.context.ApplicationContextException swagger

해내면 그만!XX·2022년 7월 28일
0

eclipse error
org.springframework.context.ApplicationContextException swagger
스웨거 설치중에 발생한 오류

	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.7.2</version>
		<relativePath /> <!-- lookup parent from repository -->
	</parent>

여기저기 참고해서 해봤는데 springboot를 2.7.2에서 2.6.2->2.6.1->2.6.0->2.5.9 변경해봤더니 되었다...이래서 정말 eclipse가 싫다...

그외 방법 3.0.0에서 2.9.2 변경

<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
<dependency>
	<groupId>io.springfox</groupId>
	<artifactId>springfox-swagger2</artifactId>
	<version>2.9.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
	<groupId>io.springfox</groupId>		
    <artifactId>springfox-swagger-ui</artifactId>
	<version>2.9.2</version>
</dependency>

0개의 댓글