<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>unknown</title>
    <link>https://avaiable.tistory.com/</link>
    <description></description>
    <language>ko</language>
    <pubDate>Sun, 2 Aug 2026 21:44:57 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>sonna</managingEditor>
    <item>
      <title>[eclipse] maven update가 안 될 때 - unable to find valid certification path to requested target</title>
      <link>https://avaiable.tistory.com/671</link>
      <description>1. 현상
&amp;nbsp; &amp;nbsp; :&amp;nbsp; 라이브러리 버전 업을 하려고 pom.xml에서 버전을 수정하고 maven update를 시도했다.&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;그런데 jar 파일을 받지 못했고, lastUpdated 가 붙은 파일들을 열어봤을 때 다음과 같은 에러 메시지를 발견했다.
https\://repo.maven.apache.org/maven2/.error=Could&amp;nbsp;not&amp;nbsp;tran..</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/671</guid>
      <comments>https://avaiable.tistory.com/671#entry671comment</comments>
      <pubDate>Fri, 6 Feb 2026 15:03:49 +0900</pubDate>
    </item>
    <item>
      <title>시간 관련 띄어쓰기</title>
      <link>https://avaiable.tistory.com/661</link>
      <description>&amp;nbsp;
1. 붙여쓰는 말
&amp;nbsp; &amp;nbsp; : 지난달, 지난주, 지난해, 지난봄, 지난여름, 지난가을, 지난겨울, 올해, 올봄, 올여름, 올가을, 올겨울, 지지난달, 지지난주, 지지난해
&amp;nbsp;
(검색했을 때 '지지난주'는 띄어쓴다는 말도 많은데 2024년 8월 기준으로 붙여쓰는 게 맞다고 나옵니다^^https://m.korean.go.kr/front/onlineQna/onlineQnaView.do?mn_id=216&amp;amp;qna_seq..</description>
      <category>우리말겨루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/661</guid>
      <comments>https://avaiable.tistory.com/661#entry661comment</comments>
      <pubDate>Fri, 26 Dec 2025 10:30:27 +0900</pubDate>
    </item>
    <item>
      <title>[mariadb] 현재 DB에서 테이블 리스트 가져오기</title>
      <link>https://avaiable.tistory.com/628</link>
      <description>&amp;nbsp;
SHOW TABLE STATUS;
&amp;gt;&amp;gt; Name, Engine, Version 등 현재 DB 전체 테이블의 전반적인 정보를 알 수 있다.
&amp;nbsp;
다는 필요없는데? 싶을 때에는
SHOW TABLE STATUS LIKE '%테이블명%';
&amp;nbsp;
테이블명 리스트만 필요하다! 할 때에는
SHOW TABLES LIKE '%테이블명%';
&amp;nbsp;
&amp;nbsp;
서버에 있는 전체 DB에서 조회하고 싶을 때에는... 나중에 추가^^..</description>
      <category>DB/mariadb | mysql</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/628</guid>
      <comments>https://avaiable.tistory.com/628#entry628comment</comments>
      <pubDate>Mon, 7 Jul 2025 16:50:25 +0900</pubDate>
    </item>
    <item>
      <title>[Book] 나는 나를 사랑할 수 있을까</title>
      <link>https://avaiable.tistory.com/620</link>
      <description>글쓴이 강지윤
&amp;nbsp;
&amp;nbsp;
- p.138
그 누구도 나의 영혼을 갉아먹게 할 만큼 대단하지 않으며 나 역시 큰 시기와 질투를 받을 만한 대상이 아니라는 것이다.
다른 사람이 스스로를 완벽하다고 여기든, 그렇지 않든 당신과는 상관없는 일이다.
당신은 당신으로서 존재하기 위해 이 세상에 태어났고 지금도 살아 숨 쉬고 있다.&amp;nbsp;
그리고 죽는 순간까지 당신은 당신과 함께 살아야 한다.&amp;nbsp;
중요한 건 다른 사람들의 '잘난 점'이 아니라..</description>
      <category>Delicate</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/620</guid>
      <comments>https://avaiable.tistory.com/620#entry620comment</comments>
      <pubDate>Sun, 1 Jun 2025 10:27:06 +0900</pubDate>
    </item>
    <item>
      <title>datepicker 날짜 지정</title>
      <link>https://avaiable.tistory.com/618</link>
      <description>datepicker에서 날짜 지정하는 방법대로 했다가 계속 실패하고 단념하고 있다가 방법을 찾았다.&amp;nbsp;
&amp;nbsp;
var targetDate = new Date(2025,4,21); //2025-05-21
$('#datepicker').datepicker();
$('#datepicker').datepicker('setDate', targetDate);

var targetDate = '2025-05-21';
$('#datepicker').dat..</description>
      <category>Javascript/jQuery</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/618</guid>
      <comments>https://avaiable.tistory.com/618#entry618comment</comments>
      <pubDate>Wed, 21 May 2025 13:11:39 +0900</pubDate>
    </item>
    <item>
      <title>[Git] rejected - non-fast-forward</title>
      <link>https://avaiable.tistory.com/593</link>
      <description>참고사이트 : https://dogcowking.tistory.com/417&amp;nbsp;
&amp;nbsp;
git에 push하다 실패나면 가슴이 철렁....
실패메시지가 (rejected - non - fast - forward)였는데&amp;nbsp;
나의 경우에는 원인이 내가 다른 PC에서 커밋하고 푸시한 것을 Pull 받지 않고
현재 PC에서 커밋했기 때문이었다.
&amp;nbsp;
다행히 커밋한 파일이 겹치지 않아&amp;nbsp;
Pull 받은 다음에&amp;nbsp;
Push ..</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/593</guid>
      <comments>https://avaiable.tistory.com/593#entry593comment</comments>
      <pubDate>Mon, 23 Dec 2024 15:32:15 +0900</pubDate>
    </item>
    <item>
      <title>[Linux] vi에서 줄번호 보이게 하려면</title>
      <link>https://avaiable.tistory.com/587</link>
      <description>맨날 찾는 것 중 하나.&amp;nbsp;
이제 제발 좀 외워라....
&amp;nbsp;
(Esc를 먼저 누르고) : set number&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
&amp;nbsp;</description>
      <category>Linux</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/587</guid>
      <comments>https://avaiable.tistory.com/587#entry587comment</comments>
      <pubDate>Mon, 28 Oct 2024 16:31:39 +0900</pubDate>
    </item>
    <item>
      <title>jpeg 파일 색변조에 대해...</title>
      <link>https://avaiable.tistory.com/542</link>
      <description>※ 문제해결을 위해 이리저리 방법을 찾는 경로에 대해 기록한 것이고 일반적인 해결방법이 아닙니다.
&amp;nbsp; &amp;nbsp;&amp;nbsp;
1. 현상 : 이미지 업로드를 하고 썸네일을 생성하는데 썸네일 색상이 원본 이미지 색상과 달라짐.
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 원본 파일에 붉은색 반전으로 넣은 듯이 색상이 달라짐.
&amp;nbsp;
2. 도움을 준 사이트
&amp;nbsp; &amp;nbsp; 1)&amp;nbsp;htt..</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/542</guid>
      <comments>https://avaiable.tistory.com/542#entry542comment</comments>
      <pubDate>Fri, 29 Mar 2024 16:41:47 +0900</pubDate>
    </item>
    <item>
      <title>구글 차트 툴팁 깜박임 현상</title>
      <link>https://avaiable.tistory.com/532</link>
      <description>차트는 막대랑 꺾은 선 밖에 안 써봤는데&amp;nbsp;
도넛(원) 차트를 만들어 볼 기회가 있어서 만들어 보았다.&amp;nbsp;
만드는 건 문제가 아니었는데 막대랑 꺾은 선과 다르게 도넛 차트에서는 차트 영역에 툴팁이 노출되는데&amp;nbsp;
커서를 툴팁 위에 대면 툴팁이 미친듯이 깜박인다.&amp;nbsp;
&amp;nbsp;
여기 저기 찾아봤더니 이미 많은 사람들이 고통받고 있는 문제였다.
그 중 참고한 사이트는 아래 2개이다. (두번째 사이트가 더 도움이 되었다.)
htt..</description>
      <category>Javascript</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/532</guid>
      <comments>https://avaiable.tistory.com/532#entry532comment</comments>
      <pubDate>Mon, 19 Feb 2024 15:23:15 +0900</pubDate>
    </item>
    <item>
      <title>encodeURI(String)</title>
      <link>https://avaiable.tistory.com/502</link>
      <description>참고사이트: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/encodeURI
&amp;nbsp;
전달할 파라미터에 한글이 있을 경우에, 호출에 장애가 발생하거나 전달된 파라미터가 깨져서 나올 수 있다.&amp;nbsp;
그럴 때에는 호출하기 전에 javascript에서 encodeURI로 감싸주면 된다.
파라미터를 포함한 url 전체를 감싸주어도 되고, 한글로 된 파라미터만 ..</description>
      <category>Javascript</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/502</guid>
      <comments>https://avaiable.tistory.com/502#entry502comment</comments>
      <pubDate>Mon, 7 Aug 2023 13:29:03 +0900</pubDate>
    </item>
    <item>
      <title>[mariadb] FEDERATED 엔진 추가</title>
      <link>https://avaiable.tistory.com/493</link>
      <description>공통으로 사용해야 하는 테이블이 다른 서버에 있어서 CREATE TABLE .... ENGINE=FEDERATED... 구문을 사용했는데&amp;nbsp;
테이블 생성에 실패했다는 빨간 엑스표시가 떴다.&amp;nbsp;
&amp;nbsp;
FEDERATED 엔진이 설치되어 있어야 해당 구문을 사용할 수 있다고 한다.
FEDERATED 엔진이 설치되었는지 먼저 확인한다.
mysql &amp;gt; SHOW ENGINES;
(어디서는 USE mysql;을 한 다음에 사용하라고 했는데..</description>
      <category>DB/mariadb | mysql</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/493</guid>
      <comments>https://avaiable.tistory.com/493#entry493comment</comments>
      <pubDate>Fri, 9 Jun 2023 15:29:29 +0900</pubDate>
    </item>
    <item>
      <title>[Javascript] 거듭제곱</title>
      <link>https://avaiable.tistory.com/486</link>
      <description>1. 거듭제곱
&amp;nbsp; &amp;nbsp; 출처 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Math/pow
&amp;nbsp; &amp;nbsp; &amp;nbsp;1) 밑**지수
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ex) 3**4 &amp;rarr; 81&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp;2) Math.pow(밑, 지수)
&amp;nbsp; &amp;nbsp;..</description>
      <category>Javascript</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/486</guid>
      <comments>https://avaiable.tistory.com/486#entry486comment</comments>
      <pubDate>Thu, 27 Apr 2023 10:00:15 +0900</pubDate>
    </item>
    <item>
      <title>색상표</title>
      <link>https://avaiable.tistory.com/485</link>
      <description>https://encycolorpedia.kr/
https://colorate.azurewebsites.net/ko
&amp;nbsp;
색감이 있었으면 좋겠다 ㅠㅠ
&amp;nbsp;
#D1FCFF&amp;nbsp;&amp;nbsp;
&amp;nbsp;
#F8AADD
&amp;nbsp;
#88FFEE</description>
      <category>HTML + CSS</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/485</guid>
      <comments>https://avaiable.tistory.com/485#entry485comment</comments>
      <pubDate>Mon, 10 Apr 2023 16:48:58 +0900</pubDate>
    </item>
    <item>
      <title>[Tomcat] 버전 확인 (feat. tomcat 위치 찾기)</title>
      <link>https://avaiable.tistory.com/462</link>
      <description>같은 tocmat7인데도
어떤 tomcat에서는 배포 시 에러로그가 남고... (그런데 동작은 한다;;;)
어떤 tomcat에서는 깨끗하고...&amp;nbsp;
라이브러리와 tocmat 버전이 맞지 않아서 에러로그가 생길 수 있다고 해서 tomcat 버전을 확인해 보았다.
&amp;nbsp;
1. tocmat 위치 확인 (이미 알고 있다면 스킵)
&amp;nbsp; &amp;nbsp;서칭해 보니 2가지 방법이 있다.
&amp;nbsp; &amp;nbsp;1) find / -name tomcat..</description>
      <category>Tomcat</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/462</guid>
      <comments>https://avaiable.tistory.com/462#entry462comment</comments>
      <pubDate>Thu, 29 Dec 2022 12:06:20 +0900</pubDate>
    </item>
    <item>
      <title>심란하다 심난하다</title>
      <link>https://avaiable.tistory.com/454</link>
      <description>심난(甚難)하다 [심ː난하다]
: (형편이나 처지가) 매우 어렵다.
&amp;nbsp;
심란(心亂)하다&amp;nbsp;[심난하다]
: 마음이 어수선하다.
&amp;nbsp;
두 단어는 발음이 같은데, '심난하다'를 발음할 때 '심'을 길게 하는 차이가 있다고 한다.
그러나 문맥에 따라 구분해야 할 듯.&amp;nbsp;</description>
      <category>우리말겨루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/454</guid>
      <comments>https://avaiable.tistory.com/454#entry454comment</comments>
      <pubDate>Wed, 30 Nov 2022 23:39:56 +0900</pubDate>
    </item>
    <item>
      <title>퍼뜨리다 퍼트리다</title>
      <link>https://avaiable.tistory.com/453</link>
      <description>둘 다 맞는 표현이라고 하네요.
'널리 퍼지게 하다'라는 뜻으로 둘 중 아무거나 사용하셔도 상관 없습니다.</description>
      <category>우리말겨루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/453</guid>
      <comments>https://avaiable.tistory.com/453#entry453comment</comments>
      <pubDate>Wed, 30 Nov 2022 09:58:12 +0900</pubDate>
    </item>
    <item>
      <title>내장함수 이것저것</title>
      <link>https://avaiable.tistory.com/447</link>
      <description>1. toUpperCase() : 대문자 변환
var str = &quot;abCdeF&quot;;
str = str.toUpperCase();
console.log(str);
//ABCDEF;
&amp;nbsp;
2. toLowerCase() : 소문자 변환
var str = &quot;abCdeF&quot;;
str = str.toLowerCase();
console.log(str);
//abcdef;
&amp;nbsp;
3. setTimeout({실행할 함수}, {지연시간(millisecond)}..</description>
      <category>Javascript</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/447</guid>
      <comments>https://avaiable.tistory.com/447#entry447comment</comments>
      <pubDate>Wed, 19 Oct 2022 10:40:18 +0900</pubDate>
    </item>
    <item>
      <title>붙여쓰기 띄어쓰기</title>
      <link>https://avaiable.tistory.com/428</link>
      <description>1. 붙여쓰기 : 한 단어로 사용되는 말이다.
남의집살이
더한층
첫솜씨
한상
올해
올봄
올여름
올가을
올겨울
지난해
지난봄
지난여름
지난가을
지난겨울
때맞추어
사사건건
걸고넘어지다
들고일어나다.
덮어쓰다. (덮어씌우다)
뒤집어쓰다. (뒤집어씌우다)
이날
그날
참다못하다. (참다못한, 참다못해)
얼토당토않다.
사고팔다.
어처구니없다.
&amp;nbsp;
&amp;nbsp;
2. 알쏭달쏭한 띄어쓰기
한 입으로 두말하기
이날 저 날 하다가</description>
      <category>우리말겨루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/428</guid>
      <comments>https://avaiable.tistory.com/428#entry428comment</comments>
      <pubDate>Tue, 9 Aug 2022 11:28:26 +0900</pubDate>
    </item>
    <item>
      <title>난발과 남발</title>
      <link>https://avaiable.tistory.com/423</link>
      <description>난발 亂發
1) 활,&amp;nbsp;대포,&amp;nbsp;총&amp;nbsp;따위를&amp;nbsp;제대로&amp;nbsp;겨냥하지&amp;nbsp;아니하고&amp;nbsp;아무&amp;nbsp;곳에나&amp;nbsp;마구&amp;nbsp;쏨.
2) 법령이나&amp;nbsp;지폐,&amp;nbsp;증서&amp;nbsp;따위를&amp;nbsp;마구&amp;nbsp;공포하거나&amp;nbsp;발행함.
&amp;nbsp;
남발 濫發
1) 법령이나&amp;nbsp;지폐,&amp;nbsp;증서&amp;nbsp;따위를&amp;nbsp;마구&amp;nbsp;공포하거나&amp;nbsp;발행함.
2) 어떤&amp;nbsp;말이나&amp;nb..</description>
      <category>우리말겨루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/423</guid>
      <comments>https://avaiable.tistory.com/423#entry423comment</comments>
      <pubDate>Thu, 7 Jul 2022 22:10:26 +0900</pubDate>
    </item>
    <item>
      <title>[java] Map의 key를 String으로 표현</title>
      <link>https://avaiable.tistory.com/388</link>
      <description>1. 요구사항
Map&amp;lt;String, Integer&amp;gt; 데이터형인 변수를 만들었는데,&amp;nbsp;이 변수의 key를 콤마(,)로 연결한 String을 만들고 싶을 때
&amp;nbsp;
2. 해결방법
Map&amp;lt;String, Integer&amp;gt; codeMap = new HashMap&amp;lt;String, Integer&amp;gt;();
codeMap.put(&quot;교사&quot;, 1);
codeMap.put(&quot;학생&quot;, 2);
codeMap.put(&quot;학부모&quot;, 3);

/..</description>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/388</guid>
      <comments>https://avaiable.tistory.com/388#entry388comment</comments>
      <pubDate>Mon, 18 Apr 2022 15:25:18 +0900</pubDate>
    </item>
    <item>
      <title>압니다O 앎니다X</title>
      <link>https://avaiable.tistory.com/382</link>
      <description>어떤 분이 메신저에서 &quot;... 앎니까?&quot; 라고 물어보시는 말을 보고 잠깐 혼란스러웠다.
저렇게 썼던가.... 그래서 구글링.
&amp;nbsp;
출처 :&amp;nbsp; https://namu.wiki/w/%ED%95%9C%EA%B5%AD%EC%96%B4/%EB%B6%88%EA%B7%9C%EC%B9%99%20%ED%99%9C%EC%9A%A9#s-3.2
&amp;nbsp;
'ㄹ' 규칙 활용
: 어간의 끝소리 'ㄹ'이 초성 'ㄴ/ㅅ'이나 중성 'ㅗ', 종성 'ㄴ/ㄹ/ㅂ/' 앞..</description>
      <category>우리말겨루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/382</guid>
      <comments>https://avaiable.tistory.com/382#entry382comment</comments>
      <pubDate>Tue, 8 Mar 2022 09:42:11 +0900</pubDate>
    </item>
    <item>
      <title>강술O 깡술X</title>
      <link>https://avaiable.tistory.com/381</link>
      <description>어제 우리말 겨루기에 나왔던 문제
나는 당연히 '깡'술이라 생각했으나.... ㅠㅠㅠㅠㅠㅠ
&amp;nbsp;
강술
: 안주 없이 마시는 술.
&amp;nbsp;
이 때의 접두사 '강'은 '다른 것이 섞이지 않다'는 뜻을 가지고 있다고 한다.
어두음을 된소리로 발음한 '깡술'을 쓰는 경우가 있으나 '강술'만 표준어로 삼는다고.
인생 헛살았네 ㅠㅠ</description>
      <category>우리말겨루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/381</guid>
      <comments>https://avaiable.tistory.com/381#entry381comment</comments>
      <pubDate>Tue, 8 Mar 2022 09:25:26 +0900</pubDate>
    </item>
    <item>
      <title>헤매다O  헤메다X</title>
      <link>https://avaiable.tistory.com/379</link>
      <description>헤매다
: 길을 잃거나 어디가 어디인지 몰라 목적지를 찾아 이리저리 왔다 갔다 하다. 방황하다. 우왕좌왕하다.
: 어떤 일을 어떻게 처리하거나 다루어야 할지 갈피를 잡지 못하다.
&amp;nbsp;
~에서 헤매다.
~을(를) 헤매다.
: 모두 맞는 표현임.
&amp;nbsp;
'헤매이다'
: 같은 뜻으로 쓸 수 있으나 규범표기가 아님.</description>
      <category>우리말겨루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/379</guid>
      <comments>https://avaiable.tistory.com/379#entry379comment</comments>
      <pubDate>Wed, 2 Mar 2022 10:49:10 +0900</pubDate>
    </item>
    <item>
      <title>공백문자와 탭문자 제거</title>
      <link>https://avaiable.tistory.com/360</link>
      <description>1. 공백문자 제거
&amp;nbsp; &amp;nbsp;: TRIM(string)
&amp;nbsp; &amp;nbsp; 그러나 TRIM함수는 공백문자만! 제거한다. 탭문자는 제거하지 않는다 ㅠㅠ
&amp;nbsp;
2. 탭문자 제거
&amp;nbsp; &amp;nbsp;: REPLACE(string, '\t', '')
&amp;nbsp;
&amp;nbsp;</description>
      <category>DB/mariadb | mysql</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/360</guid>
      <comments>https://avaiable.tistory.com/360#entry360comment</comments>
      <pubDate>Wed, 10 Nov 2021 11:39:57 +0900</pubDate>
    </item>
    <item>
      <title>[CSS] table의 th 고정</title>
      <link>https://avaiable.tistory.com/337</link>
      <description>출처 : usang0810.tistory.com/30
&amp;nbsp;
진짜 님 복 받으실 거에요... ㅠㅠ
&amp;nbsp;
title만 따로 빼서 테이블을 만들어야 하나.
td 너비가 가변인데 어쩌지.&amp;nbsp;
이런 고민들을 하다하다 기적의 CSS를 발견했다.&amp;nbsp;
&amp;nbsp;
{ position: sticky; top: 0; }
&amp;nbsp;
부모 태그의 position 조건도 필요없다.
다만 모두 예상하듯이 IE에서는 안된다 ㅎㅎㅎㅎ
&amp;nbsp;
&amp;n..</description>
      <category>HTML + CSS</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/337</guid>
      <comments>https://avaiable.tistory.com/337#entry337comment</comments>
      <pubDate>Mon, 19 Apr 2021 17:39:03 +0900</pubDate>
    </item>
    <item>
      <title>[Linux] 로그 파일에서 한글 깨질 때</title>
      <link>https://avaiable.tistory.com/297</link>
      <description>&amp;nbsp;
실행한 쿼리문을 확보하기 위해 로그를 남겼다.&amp;nbsp;
그런데 쿼리문을 기록하는 이유인 가장 중요한 정보가 ???? 로 표시되어 알아볼 수 없었다 ㅠㅠ
&amp;nbsp;
그래서 또 여기저기 서치하여 대단히 감사한 사이트 발견!
catalina.sh 파일에 자바 옵션으로 UTF-8 인코딩 구문을 넣어주면 된다는 이야기였다.
&amp;nbsp;
JAVA_OPTS=&quot;$JAVA_OPTS -Dfile.encoding=UTF-8 -Dfile.client.enco..</description>
      <category>Linux</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/297</guid>
      <comments>https://avaiable.tistory.com/297#entry297comment</comments>
      <pubDate>Tue, 29 Dec 2020 11:41:40 +0900</pubDate>
    </item>
    <item>
      <title>[Linux] pid로 프로세스 확인</title>
      <link>https://avaiable.tistory.com/285</link>
      <description>리눅스 검색어는 거의 다 제타위키 내용이다..;;;;
출처 : zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_PID%EB%A1%9C_%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4_%EC%9D%B4%EB%A6%84_%ED%99%95%EC%9D%B8
zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4_%EC..</description>
      <category>Linux</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/285</guid>
      <comments>https://avaiable.tistory.com/285#entry285comment</comments>
      <pubDate>Thu, 12 Nov 2020 15:14:49 +0900</pubDate>
    </item>
    <item>
      <title>[JavaScript] JSON 관련</title>
      <link>https://avaiable.tistory.com/281</link>
      <description>자주 사용하지만 사용할 때마다 서칭하는 ㅠㅠ
상세 문법들이 더 있지만 일단 간단하게 사용.
&amp;nbsp;
&amp;nbsp;
1. JSON 문자열을 Object로 변환
- 변수 = JSON.parse(JSON 문자열);
- 출처 :&amp;nbsp;developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse
- JSON 문자열 내에 후행 쉼표 사용 불가
const json = '{&quot;re..</description>
      <category>Javascript</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/281</guid>
      <comments>https://avaiable.tistory.com/281#entry281comment</comments>
      <pubDate>Wed, 4 Nov 2020 15:15:40 +0900</pubDate>
    </item>
    <item>
      <title>[C#] Base64/Base64Url Encode, Decode</title>
      <link>https://avaiable.tistory.com/280</link>
      <description>Java에 비해 C#은 암호와 복호화가 용이했던 기억이....
그런데 오랜만에 하려니 다 까먹어서 기록해 둔다 ㅠㅠ
&amp;nbsp;
1. 형변환 : byte[] to string, string to byte[]
- 출처 : zephie.tistory.com/11
- byte[] to string : string str = Encoding.Default.GetString(byte[]);
- string to byte[] : byte[] arrByte = En..</description>
      <category>C#</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/280</guid>
      <comments>https://avaiable.tistory.com/280#entry280comment</comments>
      <pubDate>Mon, 2 Nov 2020 16:45:45 +0900</pubDate>
    </item>
    <item>
      <title>[Linux] scp로 파일전송</title>
      <link>https://avaiable.tistory.com/277</link>
      <description>출처: twpower.github.io/138-send-file-using-scp-command
&amp;nbsp;
위의 사이트가 더 좋다. 방문하시기를 추천한다.
매번 쓸 때마다 검색하는게 지겨워서 여기에 옮겨 적어본다. 그러면 외우지 않을까 싶어서 ㅠㅠ
&amp;nbsp;
1. 기본 명령어 form
&amp;nbsp; &amp;nbsp;scp [option] [전송하려는 파일이 있는 위치] [파일을 전송하려는 목적지]
&amp;nbsp;
2. option
&amp;nbsp; &amp;nbsp;① -..</description>
      <category>Linux</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/277</guid>
      <comments>https://avaiable.tistory.com/277#entry277comment</comments>
      <pubDate>Mon, 26 Oct 2020 11:29:39 +0900</pubDate>
    </item>
    <item>
      <title>[Tomcat에러] Invalid byte tag in constant pool: 19</title>
      <link>https://avaiable.tistory.com/261</link>
      <description>1. 현상
&amp;nbsp; : 배포를 하면 프로젝트가 실행은 되는데 실행 전에 많은 로그들을 남겼다.&amp;nbsp;
&amp;nbsp; &amp;nbsp; 로그의 에러는 모두 같았다.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
org.apache.catalina.startup.ContextConfig.processAnnotationsJar Unable to process Jar entry 
[module-info.class] from Jar 
..</description>
      <category>Tomcat</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/261</guid>
      <comments>https://avaiable.tistory.com/261#entry261comment</comments>
      <pubDate>Mon, 17 Aug 2020 23:51:12 +0900</pubDate>
    </item>
    <item>
      <title>[mysql] Trigger 생성, 삭제</title>
      <link>https://avaiable.tistory.com/242</link>
      <description>참고사이트 : https://dev.mysql.com/doc/refman/8.0/en/trigger-syntax.html
delimiter |

CREATE TRIGGER testref BEFORE INSERT ON test1
  FOR EACH ROW
  BEGIN
    INSERT INTO test2 SET a2 = NEW.a1;
    DELETE FROM test3 WHERE a3 = NEW.a1;
    UPDATE test4 SET b4 =..</description>
      <category>DB/mariadb | mysql</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/242</guid>
      <comments>https://avaiable.tistory.com/242#entry242comment</comments>
      <pubDate>Mon, 6 Jul 2020 11:55:01 +0900</pubDate>
    </item>
    <item>
      <title>[Java] 멤버변수와 로컬변수</title>
      <link>https://avaiable.tistory.com/215</link>
      <description>원문 사이트 : tutorialspoint.com/Member-variables-vs-Local-variables-in-Java
&amp;nbsp;
1. 로컬 변수
&amp;nbsp; - 로컬 변수는 메소드, 생성자 또는 블록 내부에서 선언된다.&amp;nbsp;
&amp;nbsp; - 로컬 변수는 메소드, 생성자 또는 블록에 진입할 때 생성되고, 메소드, 생성자 또는 블록을 빠져나가면 소멸된다.
&amp;nbsp; - 로컬 변수에는 접근제어자(Access Modifier)를 사용하지 않..</description>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/215</guid>
      <comments>https://avaiable.tistory.com/215#entry215comment</comments>
      <pubDate>Wed, 6 May 2020 10:44:00 +0900</pubDate>
    </item>
    <item>
      <title>[IE특수] IE에서 로딩 GIF가 움직이지 않는 현상</title>
      <link>https://avaiable.tistory.com/207</link>
      <description>1. 현상
&amp;nbsp; &amp;nbsp;: 파일용량이 큰 경우 submit이 완료될 때까지 시간이 걸린다.&amp;nbsp;
&amp;nbsp; &amp;nbsp; 그 사이 화면이 멈춘 것처럼 보이기 때문에 로딩 이미지가 필요하다.
&amp;nbsp; &amp;nbsp; gif를 사용하여 지금 동작하고 있다는 느낌을 주려고 하는데&amp;nbsp;
&amp;nbsp; &amp;nbsp; IE에서 테스트 중 submit이 일어날 때 gif 이미지마저 멈춰서 보여 정말 화면이 멈춘 느낌이 났다 ㅠㅠ&amp;nbsp; &amp;nbs..</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/207</guid>
      <comments>https://avaiable.tistory.com/207#entry207comment</comments>
      <pubDate>Thu, 23 Apr 2020 10:44:17 +0900</pubDate>
    </item>
    <item>
      <title>Select 문법</title>
      <link>https://avaiable.tistory.com/194</link>
      <description>원문 사이트 :&amp;nbsp;https://docs.mongodb.com/manual/tutorial/query-documents/
&amp;nbsp;
-- Query Documents
-- Query on Embedded/Nested Documents : field의 value가 document인 경우
db.inventory.insertMany([&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&amp;nbsp;item:&amp;nbsp;&quot;journal&quot;,&amp;nbsp;qty:&amp;nb..</description>
      <category>DB/mongodb</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/194</guid>
      <comments>https://avaiable.tistory.com/194#entry194comment</comments>
      <pubDate>Thu, 26 Mar 2020 17:30:41 +0900</pubDate>
    </item>
    <item>
      <title>[Eclipse] Unknown referenced nature: org.springframework.ide.eclipse.core.springnature</title>
      <link>https://avaiable.tistory.com/192</link>
      <description>구동하는 데에 문제가 있는 것은 아니지만 찜찜하신 (나같은) 분을 위해 검색해 보았다.
&amp;nbsp;
https://stackoverflow.com/questions/53287813/unknown-referenced-nature-org-springframework-ide-eclipse-core-springnature
&amp;nbsp;
맨 아래쪽 답변을 보면 연도-월 형식으로 된 버전의 eclipse를 사용할 때 나타나는 것 같다.
&amp;nbsp;
방법1
: .pr..</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/192</guid>
      <comments>https://avaiable.tistory.com/192#entry192comment</comments>
      <pubDate>Thu, 26 Mar 2020 10:52:34 +0900</pubDate>
    </item>
    <item>
      <title>mongodb 설치</title>
      <link>https://avaiable.tistory.com/180</link>
      <description>1. 설치환경은 CentOS7.
2. 설치목적은 테스트 환경 세팅.
&amp;nbsp; &amp;nbsp;개발 서버라 마음놓고 설치하며 시건방을 떨면서 글을 쓰다가 
&amp;nbsp; &amp;nbsp;엄청나게 삽질하고 겸허함을 담아 고쳐쓴다 ㅠㅠ&amp;nbsp;
&amp;nbsp;
3. 설치방법
&amp;nbsp;1) 설치 추천 사이트 : https://docs.mongodb.com/manual/tutorial/install-mongodb-on-red-hat/
&amp;nbsp; &amp;nbsp; 사이트에서 ..</description>
      <category>DB/mongodb</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/180</guid>
      <comments>https://avaiable.tistory.com/180#entry180comment</comments>
      <pubDate>Thu, 19 Mar 2020 15:23:38 +0900</pubDate>
    </item>
    <item>
      <title>기초문법</title>
      <link>https://avaiable.tistory.com/165</link>
      <description>1. PK 만들기
https://docs.microsoft.com/ko-kr/sql/relational-databases/tables/create-primary-keys?view=sql-server-ver15&amp;nbsp; &amp;nbsp;
&amp;nbsp; 1) 기존 테이블에 추가
&amp;nbsp; &amp;nbsp; &amp;nbsp; ALTER TABLE 테이블명 ADD CONSTRAINT PK명 PRIMARY KEY CLUSTERED (컬럼명)
&amp;nbsp; 2) 새로운 테이블 생..</description>
      <category>DB/MSSQL</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/165</guid>
      <comments>https://avaiable.tistory.com/165#entry165comment</comments>
      <pubDate>Mon, 10 Feb 2020 11:07:45 +0900</pubDate>
    </item>
    <item>
      <title>쿼리튜닝 - INSTR과 LIKE 속도</title>
      <link>https://avaiable.tistory.com/155</link>
      <description>1. 현상
&amp;nbsp; &amp;nbsp;: 리스트 로딩 시 검색어가 추가되면 속도가 많이 느렸다. 답답이....
&amp;nbsp; &amp;nbsp; &amp;nbsp;검색어가 총 3개의 테이블을 검색하는 것이지만 너무 느린감이 있어서 튜닝에 나섰다.
&amp;nbsp;
2. 원인
&amp;nbsp; &amp;nbsp; : 처음 쿼리가 이랬다... SELECT 소요 시간은 2.17초 정도
	
    
    SELECT ... FROM 테이블1
    WHERE
    	INSTR(컬럼1_테이블1,..</description>
      <category>DB/mariadb | mysql</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/155</guid>
      <comments>https://avaiable.tistory.com/155#entry155comment</comments>
      <pubDate>Wed, 15 Jan 2020 11:45:09 +0900</pubDate>
    </item>
    <item>
      <title>[Linux] iptables와 firewalld 실행여부 확인</title>
      <link>https://avaiable.tistory.com/153</link>
      <description>아... 테스트 서버 포트가 갑자기 막혀서 (누군가가 그렇게 했겠지만...) 방화벽을 찾아나섰다.&amp;nbsp;
테스트 서버 방화벽은 분명 iptabls를 사용하는 것으로 알고 있었는데 iptables 설정에는 내가 사용하는 포트가 열려있다.
그런데 왜 막힌 것인가...
&amp;nbsp;
https://jootc.com/p/201808031482&amp;nbsp;(방화벽 상태 확인)
http://millky.com/@origoni/post/1128&amp;nbsp;(방화벽 관..</description>
      <category>Linux</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/153</guid>
      <comments>https://avaiable.tistory.com/153#entry153comment</comments>
      <pubDate>Tue, 7 Jan 2020 11:02:05 +0900</pubDate>
    </item>
    <item>
      <title>이미지를 반환하는 API -2</title>
      <link>https://avaiable.tistory.com/145</link>
      <description>이미지 파일을 반환하는 API를 구현하면서 에러가 발생했을 때에는 json 데이터를 반환하도록 했다.&amp;nbsp;
그런데 성공 시에도 json 데이터로 파일을 반환할 수 없는지 알아보다가 파일 데이터를 String으로 반환할 수 있다는 것을 발견하고 테스트 해 보았다.&amp;nbsp;
&amp;nbsp;
java에서 파일 데이터를 반환하고 C#에서 파일을 받아 로컬에 저장하는 소스이다.&amp;nbsp;
&amp;nbsp;
&amp;nbsp;
1) java에서 파일 데이터 반환 : 아래 ..</description>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/145</guid>
      <comments>https://avaiable.tistory.com/145#entry145comment</comments>
      <pubDate>Tue, 17 Dec 2019 18:21:32 +0900</pubDate>
    </item>
    <item>
      <title>이미지를 반환하는 API - 1</title>
      <link>https://avaiable.tistory.com/143</link>
      <description>호출 시 주어진 파라미터를 가지고 이미지 주소를 조사한 후 이미지 썸네일 파일을 반환하는 API를 생성했다.&amp;nbsp;
이미지 썸네일 파일(삼바파일)을 구한 후 http 통신을 통해 이미지 파일을 반환하는 소스이다.
&amp;nbsp;

InputStream inputStream = null; 
OutputStream outStream = null; 

try{ 
	SmbFile smbf = 전송할 삼바파일 준비;
    	ServletContext conte..</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/143</guid>
      <comments>https://avaiable.tistory.com/143#entry143comment</comments>
      <pubDate>Mon, 16 Dec 2019 10:32:22 +0900</pubDate>
    </item>
    <item>
      <title>[Vue.js Error]  These dependencies were not found:</title>
      <link>https://avaiable.tistory.com/140</link>
      <description>1. 현상
: yarn serve 실행 시 Failed to compile with 3 errors가 발생하면서 다음과 같은 에러문이 나타났다.
&amp;nbsp;
These&amp;nbsp;dependencies&amp;nbsp;were&amp;nbsp;not&amp;nbsp;found:
&amp;nbsp;
*&amp;nbsp;core-js/modules/es.function.name&amp;nbsp;in&amp;nbsp;./node_modules/cache-loader/dist/cjs.js??ref--12-0!...</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/140</guid>
      <comments>https://avaiable.tistory.com/140#entry140comment</comments>
      <pubDate>Tue, 19 Nov 2019 14:51:12 +0900</pubDate>
    </item>
    <item>
      <title>[Maven 에러] Maven Update Project 실행 이후 Java 버전이 1.5로 초기화</title>
      <link>https://avaiable.tistory.com/135</link>
      <description>&amp;nbsp;
1. 현상
&amp;nbsp; &amp;nbsp;: Maven Clean 후 Install 도 문제가 없고 톰캣 구동도 잘 된다. 그러나 오류가 있는 소스가 없는데도 프로젝트에 항상 빨간색 X표가 붙어 있다. 그리고 Maven Update Project를 한 후에는 프로젝트의 Java 버전이 1.5로 되돌아간다.
&amp;nbsp;
2. 원인
&amp;nbsp; &amp;nbsp;: 메이븐이나 자바 설정이 뭔가 잘못된 것 같은데... 아직 원인을 찾지 못했다 ㅠㅠ
&amp;nbsp;..</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/135</guid>
      <comments>https://avaiable.tistory.com/135#entry135comment</comments>
      <pubDate>Thu, 7 Nov 2019 16:41:40 +0900</pubDate>
    </item>
    <item>
      <title>[SpringMVC]  property의 변수를 @Value로 사용하기</title>
      <link>https://avaiable.tistory.com/133</link>
      <description>1. 개발환경 : Spring 4.2.8, java 1.8
&amp;nbsp;
2. @Value(&quot;${aaa.bbb}&quot;) 로 값을 할당하는 String 변수를 만든다.
@Value(&quot;${aaa.bbb}&quot;)private String prop_val;
&amp;nbsp; &amp;nbsp;: prop_val의 값이 &quot;${aaa.bbb}&quot;로 출력된다. property 파일에 등록된 값이 주입되지 않은 것이다.
&amp;nbsp;
3.&amp;nbsp; AppConfig.java 설정파일에 ap..</description>
      <category>Spring</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/133</guid>
      <comments>https://avaiable.tistory.com/133#entry133comment</comments>
      <pubDate>Wed, 6 Nov 2019 11:27:24 +0900</pubDate>
    </item>
    <item>
      <title>[SpringMVC 에러] java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'command' available as request attribute</title>
      <link>https://avaiable.tistory.com/131</link>
      <description>1. 현상
&amp;nbsp; &amp;nbsp;: SpringMVC에서 제공하는 HTML 폼 커스텀 태그를 사용하여 JSP 파일을 구현하였다.
&amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;lt;form:form modelAttribute=&quot;모델명&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 사용자명 : &amp;lt;form:input path=&quot;username&quot; /&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;..</description>
      <category>문제해결을 위한 몸부림</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/131</guid>
      <comments>https://avaiable.tistory.com/131#entry131comment</comments>
      <pubDate>Mon, 4 Nov 2019 16:40:06 +0900</pubDate>
    </item>
    <item>
      <title>[MSSQL] 문자열 다루기</title>
      <link>https://avaiable.tistory.com/129</link>
      <description>1. 문자열 인덱스 찾기
&amp;nbsp; &amp;nbsp;1) CHARINDEX(찾는 문자, 문자열)
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: 문자열에서 찾는 문자의 첫 번째 인덱스 값을 찾을 때
&amp;nbsp; &amp;nbsp;** MSSQL에서 인덱스는 1부터 시작한다.
&amp;nbsp; &amp;nbsp;** lastIndexOf 값을 찾고 싶을 때
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: LEN(문자열) + 1 - CHARINDEX(찾는 문자, REVER..</description>
      <category>DB/MSSQL</category>
      <category>mssql</category>
      <category>문자열 다루기</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/129</guid>
      <comments>https://avaiable.tistory.com/129#entry129comment</comments>
      <pubDate>Tue, 29 Oct 2019 10:52:33 +0900</pubDate>
    </item>
    <item>
      <title>vue인스턴스</title>
      <link>https://avaiable.tistory.com/121</link>
      <description>1. Vue인스턴스
&amp;nbsp; : Vue 생성자로 만든 객체
&amp;nbsp;
2. 옵션(options) 객체
&amp;nbsp; : Vue인스턴스를 생성할 때 전달하는 속성들을 담은 객체
&amp;nbsp; 1) data 옵션
&amp;nbsp; &amp;nbsp; &amp;nbsp; - Vue인스턴스와 data 옵션에 주어진 객체 사이에 프록시를 두어 처리됨. (vue 인스턴스 내부에서 직접 이용되지 않음)&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; - 변경사항은 즉시 감지됨.
&amp;n..</description>
      <category>Javascript/Vue.js</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/121</guid>
      <comments>https://avaiable.tistory.com/121#entry121comment</comments>
      <pubDate>Thu, 17 Oct 2019 15:42:47 +0900</pubDate>
    </item>
    <item>
      <title>Spring Boot에서 SQLServer 연결 시 The TCP/IP connection to the host *****, port **** has failed Error</title>
      <link>https://avaiable.tistory.com/120</link>
      <description>출처 : https://kb.sos-berlin.com/pages/viewpage.action?pageId=17499564
&amp;nbsp;
&amp;nbsp;
- 에러메시지
&amp;nbsp; &amp;nbsp;: The TCP/IP connection to the host *****, port **** has failed. Error: &quot;****. Verify the connection properties. Make sure that an instance of SQL Serv..</description>
      <category>Spring/Spring Boot</category>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/120</guid>
      <comments>https://avaiable.tistory.com/120#entry120comment</comments>
      <pubDate>Wed, 16 Oct 2019 17:03:12 +0900</pubDate>
    </item>
    <item>
      <title>java로 thumbnail 생성</title>
      <link>https://avaiable.tistory.com/110</link>
      <description>고화질 썸네일을 찾기 위해 이것저것 테스트해 본 것이 아까워서 적어본다.
나중에 재사용할 수 있도록 ...
&amp;nbsp;
&amp;nbsp;
1. 라이브러리 추가 없이 기본으로 생성하는 방법(1)
public Bufferedimage createThumbnail(MultipartFile mfile, int thumbWidth, int thumbHeight){
&amp;nbsp; &amp;nbsp; &amp;nbsp; InputStream in = mfile.getInputStream..</description>
      <author>sonna</author>
      <guid isPermaLink="true">https://avaiable.tistory.com/110</guid>
      <comments>https://avaiable.tistory.com/110#entry110comment</comments>
      <pubDate>Wed, 4 Sep 2019 16:28:10 +0900</pubDate>
    </item>
  </channel>
</rss>