전체 글(137)
-
배경화면을 이용한 슬라이드
이미지가 항상 중앙 정렬이 되게 하고자 할경우의 소스를 찾는데... 너무나도 없어서 그냥 코딩해봤당...ㅜㅜ 일단 중앙 정렬을 하려면 이미지를 배경으로 잡고 그걸 슬라이드 시켜야 한다는...ㅋ javascript source /** * */ (function($, window, document, undefined) { var pluginName = "bgslider", defaults = { prevNextButton : true, //버튼 사용유무 fadeStart : true, //자동 시작여부 fadeDelay : 2000, //이미지 Fade ms delay : 3000 //이미지 변경 ms }; function Plugin(element, options) { var sliderBox = $(el..
2015.10.23 -
Custom Validation Annotion 생성
Spring에서 코드성을 체크하는 validation 없어서 생성하기로 맘먹고 구글링 시작....^ ^ package com.company.common.validation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import javax.validation.Constraint; import javax.validation.Payload; @Documented @Constraint(validat..
2015.08.26 -
[ERROR] Ambiguous mapping found.
Caused by: java.lang.IllegalStateException: Ambiguous mapping found. Cannot map 'socialController' bean method 원인 : Controller에 동일한 RequestMapping가 설정되어 있을경우 발생
2015.08.26 -
07. POST 방식 호출
포스트 방식 호출을 위한 클라이언트 생성 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.net.HttpURLConnection; import java.net.URL; public class CallREST { public static void main(String[] args) throws Exception { String xml = " "+ " "+ " "+ " 1234 "+ " HaksooKim "+ " Ilsan "+ " "+ " "; URL ur..
2015.08.06 -
06. 서비스 호출
http://localhost:8080/REST/services를 웹브라우저에 입력하면 다음과 같이 서비스 되고 있는 내역이 나타날 것이다. 이 중에서 getCustomer1이라는 서비스를 다음과 같이 GET방식으로 호출한다. http://localhost:8080/REST/services/CXFServicePort/getCustomer1/1234를 웹브라우저의 주소창에 입력 후 엔터키를 누르면 다음과 같은 결과가 넘어 온다. SOAP 방식의 웹서비스에서 넘어왔던 결과 값이랑 비교 했을때 더욱 간결한 것을 알 수 있다. SOAP 방식에서는 SOAP 프로토콜에 사용되는 SOAP 태그들이 들어 있었지만 RESTful 방식에서는 SOAP 프로토콜을 내부적으로 사용은 하지만 표면적으로는 단순 XML만 넘어오게 ..
2015.08.06 -
05. beans.xml과 web.xml
-- beans.xml -- REST index.html index.jsp Apache CXF Endpoint cxf cxf org.apache.cxf.transport.servlet.CXFServlet 1 cxf /services/- 60 contextConfigLocation WEB-INF/beans.xml org.springframework.web.context.ContextLoaderListener
2015.08.06