◆ 무한한 가능성 185

jquery selector / jquery 선택자 / 자주 사용하는 jquery selector 선택자 / selecter 출처: http://cofs.tistory.com/25 [CofS]

제이쿼리 선택자에 대한 자세한 설명은 생략하고 바로바로 카피 & 페이스트 할 수 있도록 작성되었다. 자주 쓰이는 혹은 좋은 방법들은 계속 업로드 됩니다. 커서 변경$('body').css('cursor', 'default');$('body').css('cursor', 'wait'); 해당 ID로 지정된 HTML 보이기/숨기기$("#placeholder").show();$("#placeholder").hide(); SelectBox 의 Option 값 확인$("#search_sale_unit").find("option").each(function() { alert(this.value); }); SelectBox 의 첫번째 옵션 값$("#_CD > option:first").val(); SelectBox 에..

서블릿(자바,JAVA)에서 JSP를 호출

출처.> http://www.silverwolf.co.kr/java/9899 컨테이너는 자신이 관리하는 콤포넌트들끼리 서로 호출할 수 있는 기능인 "요청 처리 부탁(Request dispatching)" 메커니즘을 제공합니다. 이 기능을 이용해서, 서블릿은 모델로부터 받은 정보를 Request 객체 안에 저장하고, JSP에 요청을 처리해줄 것을 부탁(dispatch)할 수 있습니다. 서블릿의 중요 변경 사항:Request 객체에 모델 콤포넌트로부터 받은 정보를 저장하는 것. 그래야 JSP가 이걸 꺼내 볼 수 있으니까요.컨테이너에게 요청을 result.jsp로 넘겨줄(forward) 것을 요청하는 것. // JSP가 나중에 읽을 수 있게 Request 객체의 속성(Attribute)에 값을 설정합니다. 나..

[Salesforce] wsdlGenFiles.jar for BulkAPI and SOAP API, salesforce api

// prepare: force-wsc-38.0.3.jar;tools.jar;ST-4.0.7.jar// download from sfdc: partner.wsdl// compile //for me, it runs on Windowsjava -classpath force-wsc-38.0.3.jar;tools.jar;ST-4.0.7.jar com.sforce.ws.tools.wsdlc partner.wsdl wsdlGenFiles.jar//You should think about those versions: force-wsc-38.0.3.jar;tools.jar;ST-4.0.7.jar//This tools.jar is related to java 1.7 or 1.8. //for me, it runs on M..

Excel Export in Spring MVC. 자바 스프링에서 엑셀저장 엑셀다운로드

Excel Export in Spring MVCExport as excel is one of the most wanted feature in an enterprise application. In this tutorial let us learn about export as excel feature using Spring MVC framework. If you are a beginner, go through the Spring MVC tutorial before taking this. We will be using Spring 3 annotation based approach for the web application.If you have learned Spring MVC, there is not much ..

자바(JAVA) 형 변환(String to Date, Date to String)

자바(JAVA) 형 변환(String to Date, Date to String) String to Date String from = "2013-04-08 10:10:10";SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");Date to = transFormat.parse(from); Date to String Date from = new Date();SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");String to = transFormat.format(from); source.> http://nota.tistory.com/50