이클립스 종료 후  

아래와 같이 svn.simple 을 삭제하고도 안된다면. 

%APPDATA%\Subversion\auth\svn.simple


.keyring 파일을 찾아서 삭제하면된다. 

Ubuntu: Delete “.keyring” file at “eclipse/configuration/org.eclipse.core.runtime” 

$rm `find -name .keyring`



'Eclipse' 카테고리의 다른 글

웹 화면 설계용 툴  (0) 2013.11.08
Eclipse 3.7 + Svn  (0) 2011.12.01
이클립스 메모리 관리  (0) 2011.07.12
eclipse 3.6 HeliosにVisualEditor을 인스톨  (0) 2011.02.11
Eclipse + Tomcat6.0 + postgres8.3  (0) 2010.08.06

이클립스에 특화된 툴

WireframeSketcher  이클립스 플러그인(http://wireframesketcher.com/)

'Eclipse' 카테고리의 다른 글

리눅스 Eclipse Svn 계정 변경  (0) 2014.05.07
Eclipse 3.7 + Svn  (0) 2011.12.01
이클립스 메모리 관리  (0) 2011.07.12
eclipse 3.6 HeliosにVisualEditor을 인스톨  (0) 2011.02.11
Eclipse + Tomcat6.0 + postgres8.3  (0) 2010.08.06

Help -> Install New SoftWare -> 
 http://download.eclipse.org/releases/indigo 를 입력
-> 
Collaboration  ->  Subversive SVN Team Provider (Incubation) 선택한후 
next -> next-> 설치  

재시작 

Open Perspective ->  Svn -> SVN Kit 1.3.5 -> Next -> 설치 완료 

'Eclipse' 카테고리의 다른 글

리눅스 Eclipse Svn 계정 변경  (0) 2014.05.07
웹 화면 설계용 툴  (0) 2013.11.08
이클립스 메모리 관리  (0) 2011.07.12
eclipse 3.6 HeliosにVisualEditor을 인스톨  (0) 2011.02.11
Eclipse + Tomcat6.0 + postgres8.3  (0) 2010.08.06

Window >> Preferences >> General >> Show Heap Status 를 설정 하면


그림 과 같이 메모리를 관리 할수 있는 부분이 하단에 생긴다. 
휴지통을 클릭하면 메모리가 정리되고. 좀더 효율적으로 사용 할 수 있게 된다.  

n[출처] 이클립스 메모리 관리|작성자 천재

[출처] 이클립스 메모리 관리|작성자 천재


[출처] 이클립스 메모리 관리|작성자 천재


'Eclipse' 카테고리의 다른 글

웹 화면 설계용 툴  (0) 2013.11.08
Eclipse 3.7 + Svn  (0) 2011.12.01
eclipse 3.6 HeliosにVisualEditor을 인스톨  (0) 2011.02.11
Eclipse + Tomcat6.0 + postgres8.3  (0) 2010.08.06
Eclipse 탭 스페이스 변경  (0) 2010.08.06


eclipse 3.6 HeliosにVisualEditorをインストールする

Helios対応バージョンが出たの知らなかった。 http://www.ehecht.com/eclipse_ve/ve.html

  1. 一番上のve_eclipse_36_win32_201008292115.zipをダウンロードして解凍。
  2. eclipse起動 → ヘルプ →新規ソフトウェアのインストール
  3. 下の方にある「項目をカテゴリー別にグループ化」のチェックを外す[重要]
  4. 作業対象コンボボックスの横にある「追加」ボタンをクリック
  5. 名前の横にある「ローカル」ボタンをクリック
  6. さっき解凍したVisualEditorのフォルダを選択してOKをクリック
  7. VisualEditorが出るので、チェックして次へ
  8. 使用条件の条項に同意して、再起動

今までGalileo使ってたけど、今日からHelios使う。


'Eclipse' 카테고리의 다른 글

웹 화면 설계용 툴  (0) 2013.11.08
Eclipse 3.7 + Svn  (0) 2011.12.01
이클립스 메모리 관리  (0) 2011.07.12
Eclipse + Tomcat6.0 + postgres8.3  (0) 2010.08.06
Eclipse 탭 스페이스 변경  (0) 2010.08.06

server.xml

  <GlobalNamingResources>
--  추가
      <Resource auth="Container" 
        autoReconnect="true" 
        driverClassName="org.postgresql.Driver" 
        maxActive="20" 
        maxIdle="10" 
        maxWrite="-1" 
        name="jdbc/postgres" 
        password="1234" 
        type="javax.sql.DataSource" 
        url="jdbc:postgresql://localhost:5432/postgres" 
        username="postgres"/>
-- 추가 
  </GlobalNamingResources>

context.xml
-- 추가
    <Resource name="jdbc/postgres" auth="Container"
            type="javax.sql.DataSource"
            username="postgres"
            password="1234"
            driverClassName="org.postgresql.Driver"
            url="jdbc:postgresql://localhost:5432/postgres"
            autoReconnect="true"
            maxActive="20"
            maxIdle="10"
            maxWrite="-1"/>
--추가

web.xml
--추가
<resource-ref>
  <description>postgreSQL</description>
      <res-ref-name>jdbc/postgres</res-ref-name>
  <res-type>javax.sql.DataSource</res-type>
  <res-auth>Container</res-auth>
</resource-ref>
--추가

postgresql-8.3-603.jdbc4.jar
C:\Program Files\Apache Software Foundation\Tomcat 6.0\lib 밑에 추가
C:\Java\jre6\lib\ext 밑에 추가
(프로젝트이름)\WebContent\Web-inf\lib  밑에 추가 또는 외부라이브러리 추가..

에러
Cannot load JDBC driver class 'org.postgresql.Driver
드라이버를 못찾는다.. 드라이버가 제대로 추가 되어있는지 확인한다 .
경우 xml내용을 확인한다. 데이터베이스명, 패스워드 등.

PS 이클립스경우.. 이클립스안에 있는 Server프로젝트를 수정한다.. 

'Eclipse' 카테고리의 다른 글

웹 화면 설계용 툴  (0) 2013.11.08
Eclipse 3.7 + Svn  (0) 2011.12.01
이클립스 메모리 관리  (0) 2011.07.12
eclipse 3.6 HeliosにVisualEditor을 인스톨  (0) 2011.02.11
Eclipse 탭 스페이스 변경  (0) 2010.08.06


Preferences -> General -> Editors ->Text Editors

Insert spaces for tabs
를 체크..

지금까지 이것만 알았다. 하지만.. 안되는 경우가 발생 좀더 찾아보니..

1. eclipse menu -> windows -> preferences 
2. Java -> Code Style -> Formatter 
3. Formatter 에서 [ Edit ] 버튼을 누르고 
< Indentation > 텝에서 Tab policy을 Space only 로 변경하고..Profile 이름을 적당히 변경
하면 되더라는...

아~~하.. Tabs only로 되어 있었으니 안되는수 밖에
어쨋든 오늘도 재미난것을 발견~

'Eclipse' 카테고리의 다른 글

웹 화면 설계용 툴  (0) 2013.11.08
Eclipse 3.7 + Svn  (0) 2011.12.01
이클립스 메모리 관리  (0) 2011.07.12
eclipse 3.6 HeliosにVisualEditor을 인스톨  (0) 2011.02.11
Eclipse + Tomcat6.0 + postgres8.3  (0) 2010.08.06

+ Recent posts