일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- react
- Android
- tomcat
- JavaScript
- hadoop
- es6
- table
- MSSQL
- xPlatform
- Python
- mybatis
- window
- Java
- 보조정렬
- Sqoop
- mapreduce
- Eclipse
- Kotlin
- SSL
- 공정능력
- SQL
- SPC
- plugin
- R
- GIT
- IntelliJ
- Spring
- Express
- vaadin
- NPM
- Today
- Total
목록java (69)
DBILITY
export CATALINA_OPTS="$CATALINA_OPTS -Djava.awt.headless=true"윈도우환경에서 개발하고 시험할때는 잘 돌아갔으나 리눅스 배포 후 아무런 일도 일어나지 않는 현상이 있었다.awt 모드는 기본적(윈도우모드)으로 api를 사용하여 창이나 프레임, 대화상자를 사용하는 경우다.헤드리스모드는 이미지 등을 표시하지 않고 작성/조작하는 경우에 사용하면 된다.JFreeChart를 서버에서 사용할 경우에도 포함되겠다.
https://github.com/egovframework e-Government Standard Framework CenterKorean e-Government Standard Framework Center. e-Government Standard Framework Center has 14 repositories available. Follow their code on GitHub.github.com
public class DataStore { private final String TAG = DataStore.class.getSimpleName(); private DataStore() { Log.e(TAG, "Init"); } public static DataStore getInstance() { return LazyDataStore.instance; } private static class LazyDataStore { private static final DataStore instance = new DataStore(); } }
갑자기 필요해서 해봤다. paramter로 array를 사용함. 과목명과 교육목표에 특정 키워드들이 들어 갔는지 조회하는 부분에 사용... B.SUBJECT_NAME LIKE '%${item}%' OR C.EDUC_GOAL LIKE '%${item}%' OR B.SUBJECT_NAME LIKE '%${item}%' OR C.EDUC_GOAL LIKE '%${item}%' 하고 보니 static... B.SUBJECT_NAME LIKE '%#'+#{item}+'%' OR C.EDUC_GOAL LIKE '%#'+#{item}+'%' OR B.SUBJECT_NAME LIKE '%'+#{item}+'%' OR C.EDUC_GOAL LIKE '%'+#{item}+'%'
다음 [그림1] 과 같이 다운로드용 엑셀서식에 입력 유효성 검사가 필요해서 가이드를 참고하여 작성해 봤다. 몇해 전에 해 봤던 것 같은데, 기억이 나면 이상한 일이 된 나이가 되어버렸다. 마지막에 소스 다운로드가 있다. https://poi.apache.org/components/spreadsheet/quick-guide.html Busy Developers' Guide to HSSF and XSSF Features Busy Developers' Guide to HSSF and XSSF Features Busy Developers' Guide to Features Want to use HSSF and XSSF read and write spreadsheets in a hurry? This guide is..