본문 바로가기

분류 전체보기273

The request sent by the client was syntactically incorrect The request sent by the client was syntactically incorrect 원인 : jsp에 설정한 태그이름과 받으려는 param 이름값이 같지 않아서해결 : parameter 값을 일치시켜주니 해결됨 .. 2018. 5. 16.
Servlet 내장객체 Servlet 내장객체requestresponsesessionoutexceptionapplicationpagepageContext 2018. 5. 14.
jQuery Selector 셀렉터 종류 한눈에 보기[ Attrbute Filters 일부 해석 ]att = value : value와 같은att != value : value와 같지않은att ^= value : value로 시작하는att $= value : value로 끝나는att *= value : value를 포함하는..Basic Selector, 기본 셀렉터 (id, class, element 등) Filter Selector, 필터 셀렉터 Child Filter Selector, 자식 필터 셀렉터 2018. 5. 14.
jQuery 기본개념 JQuery란? jQuery.comjavascript framework 중 가장 많이 사용되는 프레임워크 jQuery의 특징* Decoupling Script (HTML/CSS/JS)* easy* Ajax 지원* Dom 처리* Event 처리 일관성 jQuery 사용 Notationwindow.jQuery = window.$ = jQuery = $ 12345678910111213141516171819202122//1.javascript 이용window.onload = function(){ alert("element파싱, load 완료시점 alert 창 open\n\nwindow.onload 사용");} //2-1. jQuery 이용 $(document).ready(function(){ alert("ele.. 2018. 5. 14.
Git 기본개념 형상관리에 다가가기 앞서 정리가 필요한 용어 2개* SCM(Source Code Management) : 소스코드관리* CVS(Concurrent Version System) : 동시버전시스템 요즘 형상관리시스템은 Git으로 모아지는 추세라고 하는데,그 이유는 웹플랫폼을 기반으로 제공해주기 때문에 유용하게 쓸 수 있기 때문인 것 같다. branch : test casemerge : 다른 branch와 병합check-out : branch 이동commit : 저장conflict : merge시 충돌push : server로 올릴 때pull : server에서 내려받을 때 2018. 5. 14.
ObjectMapper, JSONObject ObjectMapperDomain Object와 JSON객체를 서로 변환시켜주는 라이브러리,이 기능을 사용하려면 org.codehaus.jackson.map.ObjectMapper 라이브러리가 import 되어있어야 한다. .writeValueAsString (VO->JSON)12345User user = new User("user01", "홍길동", 20); String json = new objectMapper().writeValueAsString(user); System.out.println(json);Colored by Color Scriptercs .readValue (JSON->VO)123User returnUser = objectMapper.readValue(json, User.class);.. 2018. 5. 11.