본문 바로가기

Develop

(152)
aem 403 Sling Post servlet 403 Sling Post servlet http://stackoverflow.com/questions/36564387/403-sling-post-servlet 403 Sling Post servlet Sumanta Pakira I'm following this blog post. But I'm getting 403 error in AEM 6.1. I do not want to change in 'Apache Sling Referrer Filter'. I think this error is coming because of CSRF token which I can get by calling /libs/granite/csrf/token.json But how can I add this CSRF token i..
editplus 특정 문자 포함된 라인 삭제 editplus 특정 문자 포함된 라인 삭제AAA123 BBB456 CCC145 CCC122 DDD344 CCC432 EEE333 FFF135 GGG333CCC포함 문자열 삭제[에디트 플러스] 컨트롤 + H 찾을 말 : ^CCC(.*)$ 또는 ^(.*)CCC(.*)$ 바꿀말 : 빈공간 정규식 체크해야함.[VI] :%g/CCC/d 1.ctrl+H. 2. ex)00:01:52,585 --> 00:01:55,955 형식의 라인을 삭제 하려면→editplus의 검색에서 와일드카드는 '*' 가 아닌 '.' 임. 즉 00:01:52,585 --> 00:01:55,955 는 0.:..:..,... --> 0.:..:..,...으로 입력하고 아래는 공란으로 놓아두고.옵션에 검색식 체크 → 모두 바꿈 체크 결과: 00:..
aem decoration tags remove global.jsp 선언if (WCMMode.fromRequest(request) != WCMMode.EDIT && WCMMode.fromRequest(request) != WCMMode.DESIGN) { componentContext.setDefaultDecorationTagName(""); } 참고 :http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manager.topic.html/forum__bvjz-hi_from_a_ear.html 관련 :https://helpx.adobe.com/experience-manager/kb/ComponentDiv.html
AEM Tag properties Title: currentPage Title: Name: Path: Depth: currentNode Title: Name: Path: Depth: Result :properties Title: vision-gcurrentPage Title: vision-g Name: vision-g Path: /content/genesis/us/en/vision-g Depth: 5currentNode Title: vision-g Name: jcr:content Path: /content/genesis/us/en/vision-g/jcr:content Depth: 6 /content/genesis/us/en/vision-g
[JAVA] 자바 문자열 함수 [JAVA] 자바 문자열 함수 startWith: 문자열이 지정한 문자로 시작하는지 판단 같으면 true반환 아니면 false를 반환한다.(대소문자구별)String str = "apple";boolean startsWith = str.startsWith("a");System.out.println("startsWith: " + startsWith);결과값:trueendWith:문자열 마지막에 지정한 문자가 있는지를 판단후 있으면 true, 없으면 false를 반환한다.(대소문자구별)String str = "test";boolean endsWith = str.endsWith("t");System.out.println("endsWith: " + endsW..
[Oracle] INSERT, UPDATE, DELETE Oracle INSERT, UPDATE, DELETE INSERT INTO 테이블명(컬럼1, 컬럼2, 컬럼3, ...) VALUES(데이터1, 데이터2, 데이터3, ...) INSERT INTO 테이블명(컬럼1, 컬럼2, 컬럼3, ...) SELECT 컬럼1, 컬럼2, 컬럼3, ... FROM 테이블 명 WHERE 조건; UPDATE 테이블명 SET 컬럼1 = '입력할 값', 컬럼2 = '입력할 값', 컬럼3 = '입력할 값' WHERE 조건; UPDATE 테이블명 SET 컬럼1 = ( SELECT * FROM 테이블명 WHERE 조건 ) WHERE 조건 DELETE FROM 테이블명 WHERE 조건 ※ 다량, 대량의 내용을 업데이트 하는 방법 : http://seohc.tistory.com/105
컴포넌트 다이얼로그 필드 json 데이터 연동 Populating AEM Component Dialog fields using JSON data returned by Sling Servlets https://helpx.adobe.com/experience-manager/using/dialog_fields_servlets.html
구글맵 동해 표기 변경 방법 일반적으로 구글맵을 사용하기 위해서는 maps.google.com/maps/api/js 를 호출하게 됩니다.이 때 region=KR을 뒤에 추가하면 됩니다. 기존http://maps.googleapis.com/maps/api/js?v=3&sensor=true 변경http://maps.googleapis.com/maps/api/js?v=3&sensor=true&region=KR 변경하면 동해와 독도가 제대로 표기 됩다.