728x90 전체 글154 jstl 대 소문자 ${fn:toLowerCase(list.col_name)} ${fn:toUpperCase(list.col_name)} 이렇게 넣어주기만 하면 값이 나옵니다 ex) ${list.col_name} = Korea 1. 소문자 변환 : ${fn:toLowerCase(list.col_name)} = korea 2. 대문자 변환 : ${fn:toUpperCase(list.col_name)} = KOREA 2022. 12. 7. 자바 리스트 간단하게 재정렬 방법 List dataList = getPcbMacList(vo); dataList.sort(new Comparator() { @Override public int compare(SwhitechProcTopcover arg0, SwhitechProcTopcover arg1) { Date scanDe = arg0.getPcbMacScanDe(); Date scanDe2 = arg1.getPcbMacScanDe(); return scanDe.compareTo(scanDe2);//asc //return scanDe2.compareTo(scanDe);//desc } }); 바로 override compare 재정의 간단하게 재정렬~ 2022. 11. 24. unirest https url 적용 unirest doc //http://kong.github.io/unirest-java/#requests SSLContext sslContext = new SSLContextBuilder().loadTrustMaterial(null, new TrustSelfSignedStrategy() { public boolean isTrusted(X509Certificate[] chain, String authType) { return true; } }).build(); HttpClient customHttpClient = HttpClients.custom().setSSLContext(sslContext).setSSLHostnameVerifier(new NoopHostnameVerifier()).build(); Un.. 2022. 6. 14. 테이블별 row 수 조회 테이블별 row 수 조회 SELECT table_name, table_rows FROM information_schema.tables WHERE table_schema = 'web' ORDER BY table_rows DESC; 2021. 11. 19. 이전 1 2 3 4 5 ··· 39 다음 728x90