Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- fullcalenda 수정
- select
- linux java설치
- restapi란?
- NULL
- linux 데이터베이스
- linux db설치
- red hat linux mysql
- 정규표현식
- fullcalenda
- Java정규표현식
- linux mysql설치
- red hat mysql
- fullcalenda 일정수정
- fullcalenda 사용법
- TCP
- red hat db
- fullcalenda 일정
- fullcalenda 추가
- Java
- IP
- red hat java설치
- fullcalenda 일정추가
- fullcalenda 캘린더
- Linux
- restapi ajax
- linux dump
- fullcalenda 등록
- 패킷
- linux dump하는법
Archives
- Today
- Total
목록전체 글 (48)
어느 비전공자의 개발일지

if ( test != null && test.length() != 0) { 앞에 null 체크 우선 진행} if (test != null && !test.equals("")){ 앞에 null 체크 먼저 진행}
백엔드 개발자/Java[Spring]
2023. 4. 7. 09:20

ckEditor 설정값 ./common/js/plugins/ckeditor/ckeditor/config.js 를 만들면 사용자 설정을 읽어서 에디터에 반영 합니다. CKEDITOR.editorConfig = function( config ) { // 설정값들을 이 사이에 입력하면 됩니다. }; 1. 사용해보신분들은 아시겠지만 기본 상태에서는 대부분의 빈 태그를 자동으로 삭제합니다. 특히 폰트어썸이나 xeicon을 사용할때 i태그를 사용하는데 이를 빈 태그로 인식해서 자동 삭제하는바람에 공백을 추가하는등의 꼼수를 부려야 삭제 되지 않습니다. 많이 사용하는 i태그가 지워지는걸 방지하기 하려면 아래의 설정을 입력하면 됩니다. CKEDITOR.dtd.$removeEmpty['i'] = false; 2. CK..
백엔드 개발자/에디터
2023. 4. 7. 08:00