목록오류 (9)
작콩큰콩

run 하는 중에 깃을 pull 받았을 때 받은 code가 변경이 되지를 않았을 수 있다고 나타나는 메시지이다. 오류 사진 오류 내용 Some code changes cannot be hot swapped into a running virtual machine, such as changing method names or introducing errors into running code. The current target virtual machine [spring.config.SpringBootMain at localhost:50245] from launch [ACMS - springBootMain] was unable to replace the running code with the code in the..

2021. 2. 23. 19:12 스프링 부트 오류 * 오류 : 스트링 부트 mapper 읽어오는 부분 - 오류는 위에서부터 천천히 제발!! https://stackoverflow.com/questions/65106229/why-it-takes-t-m-s-mapper-classpathmapperscanner-and-o-m-s-mapper-classpathmap why it' take's t.m.s.mapper.ClassPathMapperScanner and o.m.s.mapper.ClassPathMapperScanner @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplic..
2021. 2. 23. 20:10 스프링 부트 오류 2021-02-23 19:48:49.627 WARN 18024 --- [ restartedMain] o.a.tomcat.util.scan.StandardJarScanner : Failed to scan [file:/C:/Users/김보람/.m2/repository/com/oracle/database/jdbc/ojdbc8/19.8.0.0/osdt_core.jar] 해당 부분에 jar 파일이 없다는 이야기 이다. 왜 없는지 정말 모르겠지만 오라클에서 다운받아 추가 해주었다. 정말 길지만 결국은 파일 세개가 없었다. * osdt_core.jar * osdt_cert.jar * oraclepki.jar - 혹시 없으면 다운받으세요!! https://www...

2021. 2. 24. 13:14 오류내용 2021-02-24 12:39:34.429 WARN 22580 --- [nio-8282-exec-2] com.zaxxer.hikari.util.DriverDataSource : Registered driver with driverClassName=oracle.jdbc.driver.OracleDriver was not found, trying direct instantiation. 오류수정 spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver ↓ spring.datasource.driver-class-name=oracle.jdbc.OracleDriver 오류이유 오라클9 이후부터 dri..