구글링에서 검색해서 찾은 내용들은 최신 업데이트된 내용과 맞질 않는 군요. 혹시 설정할 일이 있으시면 아래와 같이 해보십시오.

Task URL: ${serverUrl}/tracker/?group_id=${group_id}&func=detail&atid=${atid}&aid=
New Task URL: ${serverUrl}/tracker/?group_id=${group_id}&func=add

Query (Request) URL: ${serverUrl}/tracker/?group_id=${group_id}&atid=${atid}
Query Pattern: <a href="/tracker/\?func=detail\&aid=({Id}[0-9]+)\&group_id=${group_id}\&atid=${atid}">({Description}.+?)</a>.+?</td>

Login Request URL: ${serverUrl}/account/login.php?form_loginname=${userId}&form_pw=${password}&login=Login

로그인 쪽은 동작하지 않는 듯 보입니다.

관련 글...


p.s 3.5에서는 Connector의 이름이 Generic Web Repository Connector(혹은 Web-based access)가 아닌 그냥 Web Template Connector로 바뀐 듯합니다.


저작자 표시 비영리 동일 조건 변경 허락
이 포스트는 계속해서 업데이트 할까 합니다. 이클립스 관련해서 급하게 무슨 문제를 해결하거나 질문을 하시려면 맨 밑의 QA& 사이트 링크로 가 보세요.

이클립스 처음 접하시는 분들을 위한 사이트

이클립스 강좌

이클립스 3.4 (가니메데) 관련 강좌

이클립스 동영상 강좌

아래는 자바, C++를 이용한 개발과 관련한 사이트 모음입니다.

이클립스로 자바 개발 (JDT 등)
  • ...

이클립스로 웹 개발 (JSP, Servlet, Spring, EJB, WTP, WST 등)
  • ...

이클립스로 어플리케이션 개발 (AWT, Swing, SWT, JFace, VE 등)

이클립스에서 C, C++ 개발 (CDT 등)
  • ...

이클립스로 모바일 어플리케이션 개발 (Android, J2ME 등)

이클립스로 RCP, 플러그인 개발 (PDE, RCP 등)

이클립스 다이어그래밍 어플리케이션 개발 (GEF, EMF, GMF  등)
  • ...

아래는 프로젝트 관리를 좀 더 편리하게 해주는 툴들과 이클립스와 함께 쓰는 경우에 대한 내용들입니다.

이클립스로 버전 관리 (CVS, Subversion 등)

이클립스로 빌드 자동화 (Ant, Maven 등)
  • ...

이클립스로 테스팅 (JUnit 등)
  • ...

이클립스로 이슈 관리 (Mylyn, Trac, JIRA, Mantis 등)
  • ...

아래는 이클립스 관련 블로그, 위키, 뉴스 등을 모았습니다. RSS 주소도 함께 합니다.


아래는 커뮤니티 사이트입니다.

이클립스 커뮤니티 사이트

이클립스 관련 FAQ 사이트

이클립스 관련 Q&A 사이트

저작자 표시 비영리 동일 조건 변경 허락

WTP에서 Run On Server 마법사 중에서...

Eclipse/WTP 2008/12/31 15:13 posted by yeoupooh
(이미지 출처: http://www.okjsp.pe.kr/seq/65492)

Run As > Run On Server를 실행하면 마지막에 이런 페이지가 나옵니다.
말 그대로 해석하자면, 체크박스를 체크하게 되면, scheduler 웹 모듈에 대해서 context root를 업데이트 하겠다.

정확히 어떤 부분을 업데이트를 한다는 의미일까요? 아래의 링크를 따라가면 약간의 설명이 있긴 합니다.


For now, I've found the following workaround, should you decide it is worth the trouble to have a default webapp:

1. Leaving the context-root setting in the project as is (i.e. don't try to set it to "/"), deploy the project to the Tomcat server.

2. Double-click on the Tomcat server in the Servers view to open the configuration editor.

3. Switch to the Modules page of the editor and select the web module for the project.

4. Click the "Edit..." button, clear the Path field, and click OK.

5. Save the Tomcat configuration and close the editor.

6. Right-click on the project in a navigator or a resource in the web module and select Run As -> Run on Server.

7. Select the server to which the project was previously added and click Next.

8. Click Next again. Uncheck the "Update context root for Web module..." checkbox and click Finish. This will add a setting that prevents the change made in step 4 from being overwritten by the project's context-root setting. The browser should appear with the correct default webapp appropriate URL.

8번의 내용을 해석하면, 체크를 해제하면 4번 과정에서 context root 설정을 한 것이 덮어 써지지 않도록 한답니다.

그럼, 만약 체크를 하면 어떤 내용이 어떻게 덮어 써질지 궁금하네요.