<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>KoRoGhOsT&#039;s Blog</title>
		<link>http://koronya.tistory.com/</link>
		<description>KoRoGhOsT&#039;s Blog입니다!</description>
		<language>ko</language>
		<pubDate>Fri, 09 Mar 2012 14:33:49 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<managingEditor>KoRoGhOsT</managingEditor>
		<image>
		<title>KoRoGhOsT&#039;s Blog</title>
		<url><![CDATA[http://cfs3.tistory.com/upload_control/download.blog?fhandle=YmxvZzg3NDk2QGZzMy50aXN0b3J5LmNvbTovYXR0YWNoLzAvMjAuanBn]]></url>
		<link>http://koronya.tistory.com/</link>
		<description>KoRoGhOsT&#039;s Blog입니다!</description>
		</image>
		<item>
			<title>사용자 정의 클래스 객체의 내용 출력하기 - toString()</title>
			<link>http://koronya.tistory.com/entry/%EC%82%AC%EC%9A%A9%EC%9E%90-%EC%A0%95%EC%9D%98-%ED%81%B4%EB%9E%98%EC%8A%A4-%EA%B0%9D%EC%B2%B4%EC%9D%98-%EB%82%B4%EC%9A%A9-%EC%B6%9C%EB%A0%A5%ED%95%98%EA%B8%B0-toString</link>
			<description>&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;사용자 정의 클래스를 구현한 객체의 내용을 간단하게 출력하는 방법이 있다. 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;무슨 말인고 하니, 일반 클래스(Integer, String, 등등)를 구현한 객체를
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;print로 찍어보면 그 내용이 바로 나오는데 비하여, 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;사용자 정의 클래스를 구현한 객체를 print로 찍어보면 그 내용이 나오는 것이 아니라 객체의 주소 같은 것이 나온다. 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile27.uf.tistory.com/image/142B4D374F5996050EB2C3&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Car라는 사용자 클래스가 있다고 가정했을 때, 위와 같은 식으로 Car객체와 Integer객체를 만들어서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;각각 carList와 numberList에 삽입했다고 해보자. 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그리고 각 리스트의 내용을 출력하라고 하면, 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile27.uf.tistory.com/image/193750394F599606118CA1&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;위와 같은 결과가 나온다. 보는바와 같이 사용자 클래스를 구현한 객체인 Car는 클래스 안의 내용이 아닌 주소 같은 것이 나오게 되고, &lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이를 바로 알아보기 힘들게 된다. 이럴 때, 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/156FE8384F59960634AC0B&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 필요할 때마다, print문을 만들어줘서 출력할 수도 있지만...이는 무식한 방법이고, 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Car클래스에
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/141AA3334F5996072A3C94&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 toString method만 구현해주면, Car클래스를 구현한 객체를 출력하라고 하면, 위에서 지정한 내용들이 출력되게 된다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/144FF2364F59960731E03C&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;실제로 출력 결과는 위와 같이 사용자 클래스를 구현한 객체의 내용이 나오게 된다. &lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=26668778&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>Java~!</category>
			<category>ToString</category>
			<category>자바</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/70</guid>
			<comments>http://koronya.tistory.com/entry/%EC%82%AC%EC%9A%A9%EC%9E%90-%EC%A0%95%EC%9D%98-%ED%81%B4%EB%9E%98%EC%8A%A4-%EA%B0%9D%EC%B2%B4%EC%9D%98-%EB%82%B4%EC%9A%A9-%EC%B6%9C%EB%A0%A5%ED%95%98%EA%B8%B0-toString#entry70comment</comments>
			<pubDate>Fri, 09 Mar 2012 14:33:01 +0900</pubDate>
		</item>
		<item>
			<title>ORA-28001: the password has expired 해결법</title>
			<link>http://koronya.tistory.com/entry/ORA-28001-the-password-has-expired-%ED%95%B4%EA%B2%B0%EB%B2%95</link>
			<description>&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;JDBC 연동해서 오라클 계정 잘 쓰고 있었는데&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
어느 순간&lt;/div&gt;
&lt;div&gt;ORA-28001: the password has expired 어쩌구 에러가 나오면서,&amp;nbsp;&lt;/div&gt;
&lt;div&gt;DB연결이 실패할 때가 있다.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
오랜 기간이 지나면 해당 id의 password가 자동으로 만료 되는지는 모르겠지만,&amp;nbsp;&lt;/div&gt;
&lt;div&gt;저 에러메시지는 만료되었다는 것을 말한다.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
그러므로 해결하기 위해서는&lt;/div&gt;
&lt;div&gt;오라클에서 SQL PLUS 실행해서&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
사용자명(ID) : &amp;nbsp;&lt;/div&gt;
&lt;div&gt;여기에 기존에 쓰던 ID를 넣으면, password가 expired 되었으니 새로 입력하라고 뜬다.&lt;/div&gt;
&lt;div&gt;그러면 새로운 password를 쳐주고&lt;/div&gt;
&lt;div&gt;확인을 위해서 한번 더 password를 쳐주면&lt;/div&gt;
&lt;div&gt;암호가 재설정 되면서(원래의 암호로 쳐줘도 된다)&lt;/div&gt;
&lt;div&gt;위의 에러가 해결된다!&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-69-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-69-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-69-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=10268725&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>DB~!</category>
			<category>ORA-28001</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/69</guid>
			<comments>http://koronya.tistory.com/entry/ORA-28001-the-password-has-expired-%ED%95%B4%EA%B2%B0%EB%B2%95#entry69comment</comments>
			<pubDate>Mon, 11 Oct 2010 05:02:04 +0900</pubDate>
		</item>
		<item>
			<title>Eclipse에서 콘솔창 내용 그대로 파일로 출력하기</title>
			<link>http://koronya.tistory.com/entry/Eclipse%EC%97%90%EC%84%9C-%EC%BD%98%EC%86%94%EC%B0%BD-%EB%82%B4%EC%9A%A9-%EA%B7%B8%EB%8C%80%EB%A1%9C-%ED%8C%8C%EC%9D%BC%EB%A1%9C-%EC%B6%9C%EB%A0%A5%ED%95%98%EA%B8%B0</link>
			<description>&lt;p&gt;이클립스를 이용해서 자바 프로그래밍을 할 때, &lt;/p&gt;
  &lt;p&gt;콘솔창에 이것저것을 출력하게 된다.&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile27.uf.tistory.com/image/1476AD0F4B849864483299&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/120AAB0F4B8498643574EE&quot; height=&quot;164&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;위와 같이 적당한 수준만 출력한다면 따로 문제될게 없겠지만, &lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/image/112A53114B849865387397&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/1463810C4B8498663F03E6&quot; height=&quot;446&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;위 그림과 같이 콘솔창에 일정 수준 내용 이상이 찍히게 되면&lt;/p&gt;
  &lt;p&gt;처음에 찍힌 것은 확인도 되지 않을뿐더러 내용 자체도 보기 어렵다.&lt;/p&gt;
  &lt;p&gt;그렇다고 콘솔창에서 ctrl+a 누르고 메모장에 붙여넣기 해봐도 다 복사되는 것이 아니라&lt;/p&gt;
  &lt;p&gt;콘솔창에 보여진 것만 복사가 되고 –_-;&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;그래서 print 구문 써준 곳마다 파일에다 write해주는 걸 해줘야 되나…&lt;/p&gt;
  &lt;p&gt;이클립스에서 뭐 쉽게 해놓은거 없나 하고 봤더니…&lt;/p&gt;
  &lt;p&gt;역시나 이클립스~&amp;nbsp; 있다!!! &lt;/p&gt;
  &lt;p&gt;프로그램 실행할 때, 그냥 Run 하지 말고~&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/image/1465FD054B849867216390&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/202E0A044B8498674C6325&quot; height=&quot;447&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;위 그림 처럼 프로그램을 실행할 때, Run as – Run Configurations…를 들어가서&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile28.uf.tistory.com/image/2075220C4B849868295883&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/1705D60F4B8498691BFE36&quot; height=&quot;332&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;혹은 위 그림과 같이 Run as – Run Configurations…를 들어가서&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/image/196D89104B84986A026B10&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/1979AB0B4B84986B5E1CCE&quot; height=&quot;559&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;Common탭을 간다.&lt;/p&gt;
  &lt;p&gt;위의 화면이 기본치이고&lt;/p&gt;
  &lt;p&gt;&lt;a href=&quot;http://cfile3.uf.tistory.com/image/1861750C4B84986C5D4E99&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/110BE20D4B84986D4D6945&quot; height=&quot;516&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
  &lt;p&gt;아래 그림과 같이 Standara Input and Output 부분에서&lt;/p&gt;
  &lt;p&gt;File의 체크박스에 체크한 후에 &lt;/p&gt;
  &lt;p&gt;Workspace든, File system이든 눌러서 경로 지정해주고 파일명 지정해주고 Run을 누르면 된다!&lt;/p&gt;
  &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  &lt;p&gt;그러면 지정한 경로의 지정한 파일에 console창의 모든 부분이 저장되게 된다.&lt;/p&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=5943303&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>Java~!</category>
			<category>eclipse</category>
			<category>이클립스</category>
			<category>이클립스 콘솔창 파일로 출력</category>
			<category>자바</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/64</guid>
			<comments>http://koronya.tistory.com/entry/Eclipse%EC%97%90%EC%84%9C-%EC%BD%98%EC%86%94%EC%B0%BD-%EB%82%B4%EC%9A%A9-%EA%B7%B8%EB%8C%80%EB%A1%9C-%ED%8C%8C%EC%9D%BC%EB%A1%9C-%EC%B6%9C%EB%A0%A5%ED%95%98%EA%B8%B0#entry64comment</comments>
			<pubDate>Wed, 24 Feb 2010 12:09:33 +0900</pubDate>
		</item>
		<item>
			<title>JUnit4 TestSuite(여러 테스트 묶어서 돌리기) in Eclipse</title>
			<link>http://koronya.tistory.com/entry/JUnit4-TestSuite%EC%97%AC%EB%9F%AC-%ED%85%8C%EC%8A%A4%ED%8A%B8-%EB%AC%B6%EC%96%B4%EC%84%9C-%EB%8F%8C%EB%A6%AC%EA%B8%B0</link>
			<description>&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;테스트 프로그램을 몇 개 만들어 놓았는데
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그 테스트 프로그램을 동시에 돌려보고도 싶을 때가 있다. 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;간단한 예를 위해서 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Calculator.java라는 계산기 프로그램이 있는데 plus, minus, multiply, divide라는 method가 있다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;CalculatorTest.java는 Calculator의 method 중에서 plus, minus, divide를 test하고,
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;CalculatorTest2.java는 Calculator의 multiply method를 test하기 위해서 만들었다고 해보자.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그러면 위의 CalculatorTest.java와 CalculatorTest2.java를 동시에 테스트 하고 싶을 때가 있을 것이다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그럴 때는 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile21.uf.tistory.com/image/1413FF024B4D7F9C3CD35A&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Test할 것들이 모여있는 패키지에서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;New - Other를 눌러서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/181C880E4B4D7F9D8071CD&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Java-JUnit-JUnit Test Suite를 누른다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/150C56054B4D7F9D0AA928&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Finish를 눌러주면 기본적으로 이런 파일이 생기게 된다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그리고 나서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/1870640F4B4D7F9E4189E8&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;위의 빨간색 부분을 추가해준다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;import org.junit.runner.RunWith;
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;import org.junit.runners.Suite;
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;@RunWith(Suite.class)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;위 부분까지는 기본적으로 동일하게 해주고&lt;/span&gt;&lt;span style=&quot;font-family:굴림&quot;&gt;
			&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;@Suite.SuiteClasses( { CalculatorTest.class, CalculatorTest2.class })
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;여기에서 한꺼번에 돌릴 Test클래스들의 목록을 쭉 넣어주면 되겠다.&lt;/span&gt;&lt;span style=&quot;font-family:굴림&quot;&gt;
			&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그리고 나서 AllTest.java를 실행시켜보면 ( Run as - Junit Test )
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile5.uf.tistory.com/image/140A57054B4D7F9F23EAD1&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 파라미터로 넣은 테스트들이 한꺼번에 수행되는 것을 볼 수 있다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=5435436&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>Java~!</category>
			<category>junit</category>
			<category>JUnit+이클립스</category>
			<category>junit4</category>
			<category>TDD</category>
			<category>자바 테스팅 환경</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/63</guid>
			<comments>http://koronya.tistory.com/entry/JUnit4-TestSuite%EC%97%AC%EB%9F%AC-%ED%85%8C%EC%8A%A4%ED%8A%B8-%EB%AC%B6%EC%96%B4%EC%84%9C-%EB%8F%8C%EB%A6%AC%EA%B8%B0#entry63comment</comments>
			<pubDate>Wed, 13 Jan 2010 17:09:03 +0900</pubDate>
		</item>
		<item>
			<title>JUnit4 method선택해서 테스트하기(in eclipse)</title>
			<link>http://koronya.tistory.com/entry/JUnit4-method%EC%84%A0%ED%83%9D%ED%95%B4%EC%84%9C-%ED%85%8C%EC%8A%A4%ED%8A%B8%ED%95%98%EA%B8%B0</link>
			<description>&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;나중에 테스트할 것들이 많아지고 복잡해지고 했을 때, 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;하나의 testMethod만 수행하고 싶다면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/2024F7044B4D7F928B229B&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;해당 method의 이름 부분에 마우스 왼쪽버튼을 누르고 나서 실행을 하면 그 method만 테스트를 한다!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;반면에 하나의 method만 빼고 다른 것들 모두를 테스트 하고 싶다면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/1508C7014B4D7F935C4D0E&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 @Test 구문을 주석 처리해버리면 해당 method는 테스트 하지 않게 된다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;정식 문법으로는 주석 처리가 아니라 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile5.uf.tistory.com/image/111013104B4D7F940BCAEF&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;org.junit.Ingore를 import 해주고 나서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;@Test 구문 위에 다가 @Ignore를 붙여주면 된다.(뒤에는 이유 같은 것을 써준다~ 일종의 커멘트…)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그러면 그 메소드는 무시하고 테스트를 한다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;(위에서 보면 총 3개를 돌렸는데 그 중에서 1개는 무시되었다 라고 나온다. 즉, 2개를 테스트 했다라는 말)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=5435423&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>Java~!</category>
			<category>junit</category>
			<category>JUnit+이클립스</category>
			<category>junit4</category>
			<category>TDD</category>
			<category>자바 테스팅 환경</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/62</guid>
			<comments>http://koronya.tistory.com/entry/JUnit4-method%EC%84%A0%ED%83%9D%ED%95%B4%EC%84%9C-%ED%85%8C%EC%8A%A4%ED%8A%B8%ED%95%98%EA%B8%B0#entry62comment</comments>
			<pubDate>Wed, 13 Jan 2010 17:08:52 +0900</pubDate>
		</item>
		<item>
			<title>JUnit4 &amp; Eclipse 3.4 사용 Testing 하기</title>
			<link>http://koronya.tistory.com/entry/JUnit4-Eclipse-34-%EC%82%AC%EC%9A%A9-Testing-%ED%95%98%EA%B8%B0</link>
			<description>&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;이클립스 3.4, JUnit4 버전을 이용해서 테스팅 하는 것을 알아보겠다.&lt;/span&gt;&lt;span style=&quot;font-family:굴림&quot;&gt;
			&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;먼저 간단히 계산기 프로그램을 만들어보고(매우간단한…)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;계산기능들을 테스트할 프로그램을 Junit을 이용하여 만들 것이다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;또한, 여러 테스트 프로그램을 묶어서 테스트 해보는 것도 해볼 것이다. &amp;lt;- 다른 페이지로 링크
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;먼저 테스트할만한 프로그램을 하나 간단히 만들어보자.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/157ED10F4B4D7F784E72E5&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;먼저 위와 같이 KoroCalculator라는 패키지 안에 Calculator.java라는 파일을 만들었다.&lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이것을 Junit을 사용하여 테스팅 하기 전에
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;앞으로 테스팅할 소스는 따로 src폴더가 아닌 test라는 폴더에 따로 저장해주기 위해 폴더를 생성한다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그냥 Calculator.java가 있는 패키지에 넣어도 되고, 그냥 다른 패키지에 넣어도 되지만
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 src폴더가 아닌 test폴더에 같은 이름의 패키지를 생성해서 만들면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;아예 소스와 테스트소스가 분리되기도 하고, 가독성도 좋고, 같은 패키지로 인식해서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;private이 아닌 변수들을 참고할 수도 있다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/17429A284B4D7F797862B0&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;위와 같은 방법으로 해당 프로젝트에서 마우스 우클릭후 source folder 생성을 해주고 test이름을 쓰면 된다.&lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile21.uf.tistory.com/image/197613014B4D7F7992CF2F&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 KoroCalculator라고 위 소스와 같은 패키지 이름까지 설정한 다음에
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/1977870C4B4D7F793839E9&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;패키지에서 마우스 우클릭 후 Junit Test Case를 만들어준다.&lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile28.uf.tistory.com/image/173F9E0E4B4D7F7A674B87&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Class under test에서 Browse를 눌러주고 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/1559430F4B4D7F7A7AF8BE&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;이름 쓰는 곳에 calculator를 다 쓰든, 아니면 중간 정도만 쳐도 해당되는 클래스가 나오므로 그것을 선택한다.&lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;(바로 테스트할 것을 선택하는 것)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/203909144B4D7F7A7CF4D9&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Junit 3을 쓸건지 JUnit4를 쓸건지 물어보는데 3과 4버전이 사용하는 방법이 좀 바뀌었다고 한다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;필자는 4버전을 이용해서 했으므로 4를 클릭했다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Name에는 어떤 것을 써도 되지만, 가독성을 위해 CalculatorTest라고 써준다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그리고 next를 누르면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile26.uf.tistory.com/image/126BF10F4B4D7F7B5903A3&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이 화면에서 테스트할 메소드를 선택해주고 finish를 누르면 된다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;(multiply는 글의 후반부에 다른 테스트 프로그램으로 만들어보고 나중에 한꺼번에 돌리는 것을 해보겠다.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;nbsp;-&amp;gt; 링크글로 엮었음)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile28.uf.tistory.com/image/152ABF0B4B4D7F7B636F4A&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그러면 finish가 안되고 JUnit4가 build path에 없다고 나온다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이클립스에서는 여기서 OK를 누르면 자동으로 그 프로젝트의 build path에 Junit을 넣어준다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile27.uf.tistory.com/image/12490A244B4D7F7C06AEE8&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;그러면 이렇게 CalculatorTest.java가 만들어진다.&lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;실제로 해당 method들을 테스트 해주기 위해서 코드를 수정해보자.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/1435920B4B4D7F7C70C400&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;위와 같이 수정하였다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;assertTrue라는 구문은 org.junit.Assert밑에 있는 것으로
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그 안의 조건이 true이면 그냥 테스트를 통과하고, false이면 false를 알려주고, 그 method에 대한 테스트를 멈추는 것이다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;위의 예에서 testMinus method에서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;assertTrue(cal.minus(5, 2) == 4);
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;assertTrue(cal.minus(8, 4) == 4);
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 두줄이 있다면 위의 줄(5-2)에서 테스트 실패를 알려주고 밑의 8-4에 대한 테스트는 하지 않는다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;(위에서처럼 이클립스를 이용하여 자동으로 만들었다면 static으로 import되어 있기에 Assert.assertTrue이러지 않고
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt; 그냥 assertTrue라고 써도 사용이 된다.)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;assertTrue구문 외에 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;assertFalse, assertEquals, assertNull, assertNotNull, 등이 있다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/136D290C4B4D7F7C43C067&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;해당 소스에서 마우스 오른쪽 버튼을 누르고 Run as - Junit Test를 누르면 테스트가 진행된다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/1507E8254B4D7F7D0108F2&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그러면 위와 같이 테스트 결과가 나오게 된다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;총 3개의 테스트를 했고(testPlus, testMinus, testDivide)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;1개의 failures가 나왔다는 것이다. 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;보면 testDivide에서 테스트 실패를 했다고 나온다. failure trace 화면에서 해당 실패결과를 더블클릭 하면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/156BE50F4B4D7F7D5A7EEE&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이런 화면이 나온다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;두개의 assertTrue문 중에서 아래 것이 실패한 것으로
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;실제 구현을 그냥 단순히 int값을 나누는 것으로 해놓았기 때문에
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;cal.divide(10, 4)는 2가 나오므로 뒤의 2.5와 달라서 테스트를 통과하지 못한 것이 되겠다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/197F20274B4D7F7E5F3E11&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그래서 이렇게 간단히 calculate.java에서 divide method에 대한 수정을 해보았다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그리고 나서 다시 테스트를 돌리면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile3.uf.tistory.com/image/1867840C4B4D7F7E759C2F&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 모든 테스트가 통과되었다고 나오게 된다! 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;나중에 테스트할 것들이 많아지고 복잡해지고 했을 때, 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;하나의 testMethod만 수행하고 싶을 때가 있고,
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;어떤 testMethod는 빼고 수행해보고 싶을 때가 있다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그럴 때는 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&lt;a href=&quot;http://koronya.tistory.com/entry/JUnit4-method%EC%84%A0%ED%83%9D%ED%95%B4%EC%84%9C-%ED%85%8C%EC%8A%A4%ED%8A%B8%ED%95%98%EA%B8%B0&quot; target=&quot;_blank&quot; title=&quot;[http://koronya.tistory.com/entry/JUnit4-method%EC%84%A0%ED%83%9D%ED%95%B4%EC%84%9C-%ED%85%8C%EC%8A%A4%ED%8A%B8%ED%95%98%EA%B8%B0]로 이동합니다.&quot;&gt;이렇게 하면 된다. (&amp;lt;- 여기 클릭하면 바로 페이지 넘어갑니다)&lt;/a&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;또한, 테스트 프로그램을 몇 개 만들어 놓았는데
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그 테스트 프로그램을 동시에 돌려보고도 싶을 때가 있다. 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;간단한 예를 위해서 위에서 CalculatorTest.java는 Calculator의 method 중에서 plus, minus, divide를 test했는데
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;CalculatorTest2.java는 Calculator의 multiply method를 test하기 위해서 만들었다고 해보자.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그러면 위의 CalculatorTest.java와 CalculatorTest2.java를 동시에 테스트 하고 싶을 때가 있을 것이다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그럴 때는 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&lt;a href=&quot;http://koronya.tistory.com/entry/JUnit4-TestSuite%EC%97%AC%EB%9F%AC-%ED%85%8C%EC%8A%A4%ED%8A%B8-%EB%AC%B6%EC%96%B4%EC%84%9C-%EB%8F%8C%EB%A6%AC%EA%B8%B0&quot; target=&quot;_blank&quot; title=&quot;[http://koronya.tistory.com/entry/JUnit4-TestSuite%EC%97%AC%EB%9F%AC-%ED%85%8C%EC%8A%A4%ED%8A%B8-%EB%AC%B6%EC%96%B4%EC%84%9C-%EB%8F%8C%EB%A6%AC%EA%B8%B0]로 이동합니다.&quot;&gt;이렇게 하면 된다. (&amp;lt;- 여기 클릭하면 바로 페이지 넘어갑니다)&lt;/a&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 JUnit4와 Eclipse를 이용하여 테스팅 환경을 구축해보았다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그냥 테스트할 클래스들한테 일일이 main method만들고 system.out.println()으로 변수값 찍어가면서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;테스팅 할 수도 있겠지만, 이렇게 함으로 인해서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;보다 단위적인 테스트를 하는데 편하고, 필요없는 main method를 그 때 그 때 만들었다 지웠다가 안해도 되므로
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;버젼관리 하는데도 용이하고
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;체계적으로 테스팅 환경을 갖출 수 있다…..
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;고 하는데, 아직 많이 사용해보지는 않아서 모르겠다.(이제 막 사용을 시작했기 때문에...)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;쭉 써보면 편리한 것을 많이 느낄지도?
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=5435410&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>Java~!</category>
			<category>junit</category>
			<category>JUnit+Eclipse</category>
			<category>junit4</category>
			<category>ttd</category>
			<category>자바 테스팅 환경</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/61</guid>
			<comments>http://koronya.tistory.com/entry/JUnit4-Eclipse-34-%EC%82%AC%EC%9A%A9-Testing-%ED%95%98%EA%B8%B0#entry61comment</comments>
			<pubDate>Wed, 13 Jan 2010 17:08:30 +0900</pubDate>
		</item>
		<item>
			<title>원노트+워드 티스토리 발행 사진 가로 잘리는 현상</title>
			<link>http://koronya.tistory.com/entry/%EC%9B%90%EB%85%B8%ED%8A%B8%EC%9B%8C%EB%93%9C-%ED%8B%B0%EC%8A%A4%ED%86%A0%EB%A6%AC-%EB%B0%9C%ED%96%89-%EC%82%AC%EC%A7%84-%EA%B0%80%EB%A1%9C-%EC%9E%98%EB%A6%AC%EB%8A%94-%ED%98%84%EC%83%81</link>
			<description>&lt;p style=&quot;margin-left: 1pt&quot;&gt; 
 &lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt; 
 &lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/185A88254B4715818BB92E&quot; alt=&quot;&quot;/&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;원래는 위와 같이 나와야 되는 캡쳐 이미지가&lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt; 
 &lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt; 
 &lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt; 
 &lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/16512C264B4715825BCC49&quot; alt=&quot;&quot;/&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;이렇게 일정 사이즈가 넘어가면 &lt;/span&gt;
		&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;잘려서 나오게 된다.
&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt; 
 &lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그렇다고 사진파일을 눌러도 사진이 새창으로 나오는 것도 아니니 조금 답답하다…
&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;어떻게 해결해야 되려나 -_-;;;
&lt;/span&gt;&lt;/p&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/60</guid>
			<comments>http://koronya.tistory.com/entry/%EC%9B%90%EB%85%B8%ED%8A%B8%EC%9B%8C%EB%93%9C-%ED%8B%B0%EC%8A%A4%ED%86%A0%EB%A6%AC-%EB%B0%9C%ED%96%89-%EC%82%AC%EC%A7%84-%EA%B0%80%EB%A1%9C-%EC%9E%98%EB%A6%AC%EB%8A%94-%ED%98%84%EC%83%81#entry60comment</comments>
			<pubDate>Fri, 08 Jan 2010 20:22:43 +0900</pubDate>
		</item>
		<item>
			<title>이클립스(Ganymede) SVN + subversive 에러</title>
			<link>http://koronya.tistory.com/entry/%EC%9D%B4%ED%81%B4%EB%A6%BD%EC%8A%A4Ganymede-SVN-subversive-%EC%97%90%EB%9F%AC</link>
			<description>&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;이클립스 Ganymede버젼에서 subversive를 설치하고 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;commit이나 관련 SVN 작업을 하다보면 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;아래와 같은 에러가 뜰 때가 있다. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; face=&quot;&#039;맑은 고딕&#039;&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: 20px;&quot;&gt;An error has occurred. See error log for more details.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; face=&quot;&#039;맑은 고딕&#039;&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: 20px;&quot;&gt;java.lang.NoClassDefFoundError&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; face=&quot;&#039;맑은 고딕&#039;&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: 20px;&quot;&gt;org/eclipse/ui/internal/util/SWTResourceUtil&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/1113520B4B46DD8580DABF&quot; /&gt;&lt;span style=&quot;FONT-FAMILY: 굴림; FONT-SIZE: 12pt&quot;&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕&quot;&gt;물론 이 에러가 뜨긴 하지만, SVN 작업들은 정상적으로 작동한다.&lt;/span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;하지만 매번 뜨는 이 에러를 보면… &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;썩 기분이 좋지는 않다…-_- &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;그래서 해결하기 위해 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/112FE70C4B46DD8533F0C0&quot; /&gt;&lt;span style=&quot;FONT-FAMILY: 굴림; FONT-SIZE: 12pt&quot;&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;details를 눌러보면 org/eclipse/ui/internal/util/SWTResourceUtil 때문에 생긴 에러인데 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;Eclipse 3.4버젼인 Ganymede버젼에는 plugin 폴더에 저 파일이 없는 듯 하다. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;3.2나 3.1등의 Eclipse 구버전에는 저 파일이 있으니 해당파일을 지금 Eclipse가 설치된 곳에 가져오면 된다. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;말은 쉬운데…; &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;그냥 파일을 단순히 옮기는게 아니라 jar파일을 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;압축을 푼 다음에 구버전에서 가져온 class파일을 추가해서 다시 jar파일로 만들고 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;그 파일을 Eclipse가 설치된 곳에 가져와야 된다. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://koronya.tistory.com/attachment/cfile1.uf@183B5C1E4B46DE2809C704.jar&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/110706133414/blog/image/extension/unknown.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; org.eclipse.ui.workbench_3.4.0.I20080606-1300.jar&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;만약에~ 이클립스 3.4.0 버전을 쓰고 있다면(Ganymede) &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;그냥 간단하게 위의 첨부파일을 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;이클립스가 설치된 폴더 안의 plugins 안에 붙여넣기 해주면 되겠다. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;그러면 말끔히 해결된다. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;그렇게 해서 해결이 안된다면… &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;구버전의 이클립스를 구한다.(3.2 or 3.1 나머지는 모르겠다. 본인은 3.1이 있었기에 3.1 선택) &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;구버전 이클립스 폴더안의 plugins 안에 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕&quot;&gt;org.eclipse.ui.workbench_3.1.1.jar 이런 파일이 있을 것이다.&lt;/span&gt;&lt;span style=&quot;FONT-FAMILY: 굴림&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕&quot;&gt;그 파일의 압축을 풀면 \org\eclipse\ui\internal\util 안에 &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;SWTResourceUtil.class파일이 보일 것이다! &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/16075D0D4B46DD86185378&quot; /&gt;&lt;span style=&quot;FONT-FAMILY: 굴림; FONT-SIZE: 12pt&quot;&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;그러면 그파일을 지금 버전의 plugins 폴더의 jar파일에 추가를 시켜줘야 된다. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕&quot;&gt;직접 plugins 폴더 안에 있는 org.eclipse.ui.workbench_3.4.0.I20080606-1300.jar 파일의 압축을 푼 다음에&lt;/span&gt;&lt;span style=&quot;FONT-FAMILY: 굴림&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-SIZE: 10pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕&quot;&gt;위에서 가져온 SWTResourceUtil.class파일을 역시 \org\eclipse\ui\internal\util 안에 넣어준 다음에&lt;/span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;풀어진 jar파일의 모든것 + 방금 파일을 다시 jar파일로 압축한다. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;a title=&quot;[http://koronya.tistory.com/entry/%ED%8F%B4%EB%8D%94-%EB%82%B4%EC%9D%98-%ED%8C%8C%EC%9D%BC%EC%9D%84-jar%EB%A1%9C-%EC%95%95%EC%B6%95%ED%95%98%EA%B8%B0]로 이동합니다.&quot; href=&quot;http://koronya.tistory.com/entry/%ED%8F%B4%EB%8D%94-%EB%82%B4%EC%9D%98-%ED%8C%8C%EC%9D%BC%EC%9D%84-jar%EB%A1%9C-%EC%95%95%EC%B6%95%ED%95%98%EA%B8%B0&quot; target=&quot;_blank&quot;&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#B1C4FC&quot;&gt;&lt;b&gt;(폴더 째 jar파일로 압축하는 방법은 -&amp;gt;&amp;nbsp;과거의 이 포스트를 참고!)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;그리고 나서 그 jar파일을 현재 Eclipse가 설치된 폴더의 plugins 안에 넣어주면 문제는 해결된다! &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;참고했던 외국사이트 링크&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;a href=&quot;http://blog.export.be/2009/04/eclipse-ganymede-suffering-from-noclassdeffounderror-swtresourceutil/&quot;&gt;http://blog.export.be/2009/04/eclipse-ganymede-suffering-from-noclassdeffounderror-swtresourceutil/&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;MARGIN-LEFT: 1pt&quot;&gt;&lt;span style=&quot;FONT-FAMILY: 맑은 고딕; FONT-SIZE: 10pt&quot;&gt;&amp;nbsp; &lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=5379388&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>Java~!</category>
			<category>Eclipse 에러</category>
			<category>Subversive 에러</category>
			<category>SVN 에러</category>
			<category>SWTResourceUtil</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/59</guid>
			<comments>http://koronya.tistory.com/entry/%EC%9D%B4%ED%81%B4%EB%A6%BD%EC%8A%A4Ganymede-SVN-subversive-%EC%97%90%EB%9F%AC#entry59comment</comments>
			<pubDate>Fri, 08 Jan 2010 16:23:50 +0900</pubDate>
		</item>
		<item>
			<title>자바 Subversion(SVN) 설정법 in Eclipse(VisualSVN + Subversive)</title>
			<link>http://koronya.tistory.com/entry/%EC%9E%90%EB%B0%94-SubversionSVN-%EC%82%AC%EC%9A%A9%EB%B2%95-in-EclipseVisualSVN-Subversive</link>
			<description>&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;버젼관리 시스템에서 CVS와 더불어 양대산맥을 이루고 있는 SVN.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;CVS가 기존강자 였다면, SVN은 보다 편리+막강해진 성능으로
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;점차 사용자를 늘려가고 있는 시스템.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;따라서, 처음 버전관리 시스템을 처음 접한다면 CVS보다는 SVN을 추천한다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;먼저 SVN을 설치하기 위해서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;SVN 서버 세팅을 해주도록 하자.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;a href=&quot;http://subversion.tigris.org/&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;http://subversion.tigris.org/&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;여기에 들어가서&lt;/span&gt;&lt;span style=&quot;font-family:굴림&quot;&gt;
			&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/182E3F014B46D7CC308E77&quot; /&gt;&lt;span style=&quot;font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;빨간 밑줄이 그어진 링크를 누르면&lt;/span&gt;&lt;span style=&quot;font-family:굴림&quot;&gt;
			&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/112A55114B46D7CD1FD23D&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이런 화면이 나온다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;certified binaries라고 해서 처음에 collabnet을 설치했었는데
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;계정관리들을 text로 하고 이런저런 불편함 때문에
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;제일 아래에 있는 VisualSVN을 설치했다!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile5.uf.tistory.com/image/1936900E4B46D7CE5785BC&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;다운로드를 해서 설치를 하다 보면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/153D810D4B46D7CE698D3A&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이 화면에서는 위에것(기본)을 누르고… -&amp;gt; SVN서버와 관리도구 둘다 설치!  (아래는 관리도구만 설치하는듯?)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/126CCF0F4B46D7CF32E207&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이 화면에서 설치 경로를 지정한 다음에(위에 것은 프로그램 설치 경로, 아래 것은 프로젝트파일 저장소 경로)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;port를 지정하는데 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;본인의 경우에는 기본으로 두니 443이어서 next를 눌렀는데 해당 포트를 사용하는 프로그램이 있다는 둥의 메시지가 떠서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;8443으로 바꾸어 주고 next를 누르니 잘 되었다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;next를 눌렀을 때, 뭐라뭐라 메시지가 뜨면 해당 port 번호가 사용중인 것이니 다른 port 번호를 사용하면 된다!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;다 설치한 후에 VisualSVN Server를 실행시키자
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile26.uf.tistory.com/image/167D3F034B46D7D10F0421&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;users에서 오른쪽 버튼 눌러서 새로운 사용자를 등록한 후에(name, password 입력)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/18763C044B46D7D119315B&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Repositories에서 역시 오른쪽 버튼 눌러서 새로운 저장소를 등록하고 체크박스에 입력을 한다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그리고 나면 repository가 정상적으로 생성된 것이다!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;이제 서버 세팅은 끝이 났고, &lt;/span&gt;&lt;span style=&quot;font-family:굴림&quot;&gt;
			&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이클립스를 실행시켜서 클라이언트 세팅을 할 차례!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/185EA9034B46D7D13EBACF&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이클립스를 실행시킨 다음에 Help&amp;gt;Software Updates…를 누른다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/173265014B46D7D23ABB71&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Add site…를 누르고
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;a href=&quot;http://www.polarion.org/projects/subversive/download/update-site/&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;http://www.polarion.org/projects/subversive/download/update-site/&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕&quot;&gt;를 입력해고 난 뒤에&lt;/span&gt;&lt;span style=&quot;font-family:굴림&quot;&gt;
			&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/1605620F4B46D7D2015BBA&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;나오는 것들을 체크 해주고 Install을 누른다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;license 동의가 나오면 accept를 누르고 계속 설치를 하면, 설치가 완료 되고 eclipse를 재실행 하라고 나온다. 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;다시 실행한 eclipse에서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/135BDD034B46D7D225EC9B&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Window&amp;gt;Open Perspective&amp;gt;Other…을 누른 후
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/1827E20E4B46D7D3AA6B72&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;SVN Repository Exploring이 나오면 설치가 완료된 것!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;OK를 눌러서 SVN 탐색창으로 가보자!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile3.uf.tistory.com/image/11326A0B4B46D7D304B994&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;동글뱅이 친 곳을 눌러서 새로운 SVN Repository를 등록시킨다. (위에서 했었던 SVN 서버~!)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/1967D3244B46D7D34293B6&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;URL에 아까 위에서 설정했던 SVN의 서버 IP주소와 포트번호, 그리고 svn/repository이름을 입력한다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;서버 IP주소가 10.10.10.10에 설정 포트가 7070이고, 만들었던 repository 이름이 koro라면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;a href=&quot;https://10.10.10.10:7070/svn/koro&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;https://10.10.10.10:7070/svn/koro&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;  라고 쳐주면 된다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그리고 아래에 User / password에 서버에서 설정했던 사용자의 ID와 PW를 설정하면 된다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그리고 Finish를 누르면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile27.uf.tistory.com/image/132D2A284B46D7D41C9821&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이게 나온다면 그냥 Trust Always를 누르면 더 이상 귀찮게 안나돈다. (해당 IP주소를 믿느니 어쩌니 하는 것~)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/13525C0F4B46D7D4449E35&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;그러면 위와 같이 서버와 연동이 된다!!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;지금은 서버에 아무 데이터도 없으니 version이 죄다 1이고 파일도 없다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이제 간단히 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/132C2A0B4B46D7D511320D&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;HelloKoro.java가 들어있는 HelloKoro 프로젝트를 SVN에 등록시켜보도록 하자!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/124CD3134B46D7D52A6994&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;프로젝트에서 오른쪽 버튼 눌러서 Team &amp;gt; Share Project…를 누르면 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/1441A00D4B46D7D57F86AC&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 CVS와 SVN을 선택하는게 나오고, SVN을 선택하면
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/1705A4254B46D7D6378395&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이렇게 기존의 repository를 사용하겠냐고 나온다.  (좀 전에 등록했던 repository가 이것이다)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;아까 등록해두지 않았으면 위의 create를 눌러서 등록하면 되고, 해두었으면 저걸 눌러서
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;Next, Next누르거나 Finish 누르면 
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/174FB70F4B46D7D6551F12&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;커맨트를 입력하라고 나오고
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;적당한 커맨트를 입력하면 SVN 서버에~ 이 프로젝트가 업로드 된다!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/1962160D4B46D7D73689E5&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;다시 repository에 가보면 이렇게 서버에 등록된 것을 볼 수 있다.
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이제 SVN을 멋지게 사용하면 된다!!!
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;이 글에서 사용한 Eclipse버젼 -&amp;gt; 3.4.0(Ganymede)
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=5379026&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>Java~!</category>
			<category>subversive</category>
			<category>SVN</category>
			<category>SVN 설정</category>
			<category>VisualSVN</category>
			<category>이클립스 SVN</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/58</guid>
			<comments>http://koronya.tistory.com/entry/%EC%9E%90%EB%B0%94-SubversionSVN-%EC%82%AC%EC%9A%A9%EB%B2%95-in-EclipseVisualSVN-Subversive#entry58comment</comments>
			<pubDate>Fri, 08 Jan 2010 15:59:35 +0900</pubDate>
		</item>
		<item>
			<title>폴더 내의 파일을 jar로 압축하기</title>
			<link>http://koronya.tistory.com/entry/%ED%8F%B4%EB%8D%94-%EB%82%B4%EC%9D%98-%ED%8C%8C%EC%9D%BC%EC%9D%84-jar%EB%A1%9C-%EC%95%95%EC%B6%95%ED%95%98%EA%B8%B0</link>
			<description>&lt;p style=&quot;margin-left: 1pt&quot;&gt;자바에서 쓰이는 jar파일에&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;추가로 class를 넣고 새로 압축하고 싶을 때&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;일반 winrar, winzip으로 압축을 하면 안된다!&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&quot;시작 + r&quot; 키를 눌러서 cmd를 눌러 커맨드 창을 띄운 후&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;압축하고자 하는 폴더에 간 후에&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;jar cvf koro.jar . &amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;이렇게 치면 그 폴더내의 모든 것들이 koro.jar로 압축이 된다.&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;koro.jar &amp;nbsp;뒤에 한칸 띄우고 &amp;nbsp; . &amp;nbsp;을 잊으면 안된다!!!&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;점 빼먹으면 안된다...!&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/1979AF054B46CE50215215&quot; /&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;lt; 점을 빼먹거나 한칸 띄우지 않고 점을 썼을 떄 나오는 화면&amp;gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/203AB3284B46CE50D36E22&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;lt; 점을 제대로 된 위치에 찍어서 실행시킨 화면&amp;gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;img src=&quot;http://cfile26.uf.tistory.com/image/120A59124B46CE50938B9D&quot; /&gt;&lt;span style=&quot;font-family:굴림; font-size:12pt&quot;&gt;
		&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;lt;폴더내의 모든 파일들이 koro.jar로 압축되었다. 하위 폴더가 있다면 알아서 압축된다&amp;gt;
&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&amp;nbsp;
&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;margin-left: 1pt&quot;&gt;&lt;span style=&quot;font-family:맑은 고딕; font-size:10pt&quot;&gt;&amp;nbsp;
&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=5378543&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>etc~!</category>
			<category>jar</category>
			<category>폴더를 jar로 압축하기</category>
			<author>KoRoGhOsT</author>
			<guid>http://koronya.tistory.com/57</guid>
			<comments>http://koronya.tistory.com/entry/%ED%8F%B4%EB%8D%94-%EB%82%B4%EC%9D%98-%ED%8C%8C%EC%9D%BC%EC%9D%84-jar%EB%A1%9C-%EC%95%95%EC%B6%95%ED%95%98%EA%B8%B0#entry57comment</comments>
			<pubDate>Fri, 08 Jan 2010 15:18:57 +0900</pubDate>
		</item>
	</channel>
</rss>

