일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- FrontEndDevelopment
- javascript
- StateManagement
- JS
- eclipse
- 배열
- maven
- ArrayMethods
- CodeTutorial
- CodingTutorial
- DeveloperTips
- includes()
- ReactHooks
- WebDevelopment
- sql
- error
- preventDefailt
- SoftwareEngineering
- git lab
- 배열에 특정 요소 포함
- 스프링
- JavaScriptTutorial
- Oracle
- Spring
- java
- ProgrammingTips
- There is no tracking information for the current branch
- 배열에 문자열
- 문자열 포함
- LearnCoding
- Today
- Total
목록error (6)
Code Party Lounge
집에서는 에러없이 잘 돌아갔는데 노트북으로 테스트하면 날짜 부분에서 에러가 나왔다. HTTP Status 500 – Internal Server Error javax.servlet.ServletException: javax.servlet.jsp.JspException: In , value attribute can not be parsed: "1990-01-01 00:00:00" 확인해보니 날짜파싱하는 과정에서 이렇게 작성했었는데 읽어오는 데이터 패턴은 yyyy-MM-dd HH:mm:ss 패턴이라서 오류가 났었다 .S를 지워주면 에러 해결!
ajax를 사용해 JSON 타입의 데이터를 가지고 오는데 406 에러가 발생했다. 내 경우엔 maven에 dependency를 추가하지 않아서 발생한 오류였고 아래 dependency를 추가하니 정상작동했다. org.codehaus.jackson jackson-mapper-asl 1.9.13
개발 중인 웹사이트에서 개발자 모드로 페이지를 보는데 Failed to load resource: the server responded with a status of 404 () 에러가 발생했다. 실행에는 상관없었지만 하나의 에러라도 없는 상태로 진행하고 싶어 해결 방법을 검색했다 작업중인 jsp 페이지의 에 profile="http://www.w3.org/2005/10/profile"를 추가해 주니 에러는 사라졌다. [참고] https://zzdd1558.tistory.com/191
프로젝트에는 문제가 없지만 보기 불편하기에 폴더로 바꾸는 방법을 알아봤다. 1. 프로젝트 마우스 우클릭 -> Properties 선택 2. Java Build Path -> Source 선택 3. /src/main/resources -> Excluded -> Edit 선택 4. Exclusion patterns의 Add를 선택하고 ** 입력 5. Finish
oracle db가 설치된 경로(C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib)로 들어가서 ojdbc6jar를 복사한다. 톰캣이 설치된 경로안에(C:\apache-tomcat-8.5.61\lib) 파일을 붙여넣고 다시 서버를 실행한다.
maven clean 후 다시 install을 하는데 에러가 떴다. error: Soure option 6 is no longer supported. Use 7 or later. error: Target option 6 is no longer supported. Use 7 or later. 내 경우엔 pom.xml 에서 maven-compiler-plugin의 버전을 1.8로 수정하니까 install이 정상적으로 install 됐다.