일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ubuntu
- Eclipse
- STS
- Open Source
- 문서
- JavaScript
- PostgreSQL
- MSSQL
- Tomcat
- error
- Spring Boot
- 설정
- oracle
- maven
- 오픈소스
- AJAX
- spring
- Docker
- jpa
- Python
- Source
- Core Java
- git
- IntelliJ
- JDBC
- Thymeleaf
- SpringBoot
- myBatis
- MySQL
- Exception
- Today
- Total
목록Exception (114)
헤르메스 LIFE
SSO 에 접속 환경을 개발하던 중 아래와 같은 오류가 발생하였습니다. java.lang.IllegalArgumentException: An invalid domain [.xxxxx.com] was specified for this cookie Tomcat 8.x 버전에서 발생하는 문제라고 합니다. 해결방법 tomcat's conf/context.xml 파일에 아래의 코드를 추가합니다. WEB-INF/web.xml ${catalina.base}/conf/web.xml Spring Boot 라면 아래의 코드를 추가합니다. @Bean public EmbeddedServletContainerCustomizer tomcatCustomizer() { return container -> { if (container..
개발환경 Spring Boot 2.2.4 JDK 1.8.0_202 REST + log4j2 설정 시 아래와 같은 오류가 발생했습니다. SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/C:/Users/hermeswing/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/C:/Users/hermeswing/.m2/repository/org/apache/logging/log4j/l..
Spring Boot JDK 1.8.x REST 를 공부하던 중 아래와 같은 오류가 발생되었습니다. Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported] 1. RequestMapping 설정 @RequestMapping(value = "/users", method = RequestMethod.POST) 2. PostMapping설정 @PostMapping(value = "/users") 3. 요청경로 오류 다른 경로를 지정하고 POST 로 전송하는 경우.
SAP 연동 중 아래와 같은 메시지가 발생되었습니다. JCo initialization failed with java.lang.UnsatisfiedLinkError: C:\Windows\System32\sapjco3.dll: Can't find dependent libraries Visual Studio 2013 C/C++ runtime libraries 를 설치하면 해결됩니다. https://support.microsoft.com/en-us/help/4032938/update-for-visual-c-2013-redistributable-package
getDateTimeFormat( "yyyyMMddHHmmssfff" ) 를 사용해서 함수롤 Call 했더니 아래와 같은 오류가 발생했습니다. Exception in thread "main" java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: HourOfDay at java.time.LocalDate.get0(LocalDate.java:680)at java.time.LocalDate.getLong(LocalDate.java:659) at java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:298) at java.time.format.DateTimeFo..
JDK 1.8.x IntelliJ IDEA 2020.3 . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v2.2.5.RELEASE) 2020-12-26 19:35:37.382 INFO 12104 --- [ main] com.sample.Application : Starting Application on DESKTOP-HMJ6ST0 with..
JDK 1.8.x IntelliJ IntelliJ IDEA 2020.3 java: cannot find symbol symbol: class SpringBootApplication package com.sample; @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } 참담하고, 어이 없지만.. classpath 를 설정하지 못해서.. ㅡㅡㅋ Alt + Shift + Enter Alt + Enter package com.sample; import org.springframework.boot.SpringAp..
개발환경 MSSQL Spring 데이터 저장 시 아래와 같은 오류가 발생하였습니다. com.microsoft.sqlserver.jdbc.SQLServerException: String or binary data would be truncated. 내용 DataIntegrityViolationException 을 리턴한 내용입니다. SQLException Error Code 는 8152 입니다. 등록된 문자열의 길이가 테이블 컬럼의 길이보다 클 때 발생하는 오류 입니다. 컬럼 길이를 좀 늘려야 겠네요.. ㅡㅡㅋ
개발환경 JDK 1.8.0_202 Tomcat 8.5.54 Eclipse 2020-06R 12월 20, 2020 4:57:34 오후 org.apache.tomcat.util.digester.SetPropertiesRule begin 경고: [SetPropertiesRule]{Server/Service/Engine/Host} Setting property 'xmlNamespaceAware' to 'false' did not find a matching property. 12월 20, 2020 4:57:34 오후 org.apache.tomcat.util.digester.SetPropertiesRule begin 경고: [SetPropertiesRule]{Server/Service/Engine/Host} Se..
Invalid use of side-effecting or time-dependent operator in 'UPDATE' within a function. Invalid use of side-effecting or time-dependent operator in 'DELETE' within a function. MSSQL의 FUNCTION에서 UPDATE, DELETE 명령을 사용했을 경우 발생하는 오류입니다. MSSQL 에서의 FUNCTION 은 READONLY 입니다. 'UPDATE', 'DELETE' 는 사용할 수 없습니다. 'UPDATE', 'DELETE' 는 사용하려면 PROCEDURE를 사용해야 합니다. FUNCTION 에서는 UPDATE, DELETE 말고도.. BEGIN TRY, PRIN..