일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Eclipse
- STS
- myBatis
- error
- JavaScript
- Open Source
- spring
- JDBC
- Source
- 오픈소스
- git
- PostgreSQL
- Core Java
- Thymeleaf
- MSSQL
- ubuntu
- SpringBoot
- IntelliJ
- 설정
- Python
- oracle
- AJAX
- 문서
- jpa
- MySQL
- Spring Boot
- maven
- Docker
- Tomcat
- Exception
- Today
- Total
목록Exception (56)
헤르메스 LIFE
개발환경 : Spring Boot 2.7.9 Database : H2-2.1.214 JDK : 11.0.18 x64 JPA H2 Database 를 이용해서, User 라는 JPA Entity 를 생성하는 테스트를 하던 중 아래와 같은 오류가 발생했습니다. package octopus.entity; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import org.hibernate...
개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.7.8 9. Thymeleaf 3.0.15 2023-01-29 11:00:28.709 ERROR 19620 --- [nio-8081-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thyme..
오류내용 ERROR in ./node_modules/vue-loader/lib/template-compiler?{"id":"data-v-2fff0124","hasScoped":false,"buble":{"transforms":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/components/TodoInput.vue Module build failed: SyntaxError: Unexpected token (1:153) at Parser.pp$4.raise (C:\project\workspace\vuesample\vue-todo\node_modules\vue-template-es2015-compiler\buble.js:..
일단 구글링으로 해결했습니다. 아래 출처에 자세한 설명이 있으니 확인해봐야 겠습니다. org.glassfish.jaxb jaxb-runtime https://luvstudy.tistory.com/61 JDK 11에서 java.xml.bind 관련 에러 발생하는 경우 JDK 9나 10에서 프로젝트 실행 시 아래와 같은 오류가 나게 되는 경우가 있다. Caused by: java.lang.ClassNotFoundException: javax.xml.bind.JAXBContext Java EE 모듈과 CORBA 모듈이 Deprecated 되면서 기본.. luvstudy.tistory.com https://pekahblog.tistory.com/62 [Spring] javax/xml/bind/DatatypeCo..
개발환경 Spring Boot 기본프로젝스 생성 후 Maven Install 하여 jar를 생성하던 중 아래와 같은 오류가 발생했습니다. 2022-06-25 15:43:30.351 ERROR 1452 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to det..
여러가지 이상한 로그가 보여집니다. 2022-03-27 02:21:20.726 DEBUG 21440 --- [ main] .c.l.ClasspathLoggingApplicationListener : Application started with classpath: unknown javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1083) ~[na:na] at java...
STS 환경하에서 Gradle 환경으로 개발환경을 구축하던 중 아래와 같은 오류가 발생 했습니다. Cannot use Gradle object after build has finished. Java home 을 지정해주니 해결 됐습니다.
개발환경 1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 6. Database : Docker 에 DB 설치 - primary - PostgreSQL 13.3 7. Spring Security : 5.6.1 8. lombok 9. Thymeleaf 3.0.14 17:45:47.766 ERROR org.thymeleaf.TemplateEngine.process(1136) - [THYMELEAF][http-nio-9090-exec-7] Exception processing template "loginForm": Error reso..
1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 package com.study.springboot.test.controller; import static org.springframework.test.web.client.match.MockRestRequestMatchers.content; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servl..
1. STS 버전 : 4.13.1 2. JDK 버전 : OpenJDK 11.0.14_9_x64 3. Tomcat 버전 : 9.0.56 4. Maven 버전 : 3.8.4 5. Spring 버전 : Spring Boot 2.6.3 오류 메시지 org.junit.runners.model.InvalidTestClassError: Invalid test class 'com.study.springboot.test.controller.HelloControllerTest': 1. No runnable methods at org.junit.runners.ParentRunner.validate(ParentRunner.java:525) at org.junit.runners.ParentRunner.(ParentRunner...