-------------------------
Version 3.2.1
------------
Fixed :
- Problem when using HTTPS and various ClassNotFound exceptions.
- Tomcat 5 and 6 does not start when context declaration mode is set to 'Server.xml'
-------------------------
Version 3.2
------------
New features :
- Tomcat 6.x supported.
If you want to use DevLoader with Tomcat 6.x. Rename DevLoader.zip file to DevLoader.jar and put it in <%Tomcat6_Home%>/lib
- Tested with Eclipse 3.1, 3.2 and 3.3M6
Fixed :
- Problem when using Devloader with Maven2 plugin (Many thanks to Dimitry Voytenko)
Explanations :
Maven2 Eclipse plugin expands Eclipse's classpath container to include all the artifacts specified in the Maven's POM file.
This fix allows resolution inside the classpath containers : On the Tomcat's Project Properties page, containers are now expanded so that a user can select the whole container (in which case the behavior is exactly the same as before) or select a component resolved via the container
- Some problems with source code lookup in eclipse debugger (code assist, detail formatter, ...)
- VCM Tools not notified when .tomcatplugin file is updated from Tomcat projects properties page. (Thanks to Jonathan Ball).
- UTF-8 problems with context file and .tomcatplugin file (Thanks to Vincent CARON)
- Fixed in beta2 : Context Declaration Mode mess with version 3.2beta, fixed in 3.2beta2
- Fixed in beta3 : Source code lookup did not work when source code was in a jar file (Many thanks to Martin Goldhahn)
- Fixed in final version :
- parameter '-config' should not be set when context declaration mode is not 'Server.xml'
- working directory for tomcat process was set to eclipse directory instead of catalina_base.
- source code lookup improvments.
Known problems :
- After installation the plugin is not shown in toolbar and there is no Tomcat Preference page
Solution : launch eclipse once using this option : -clean
- ClassNotFound when using DevLoader and launching Tomcat 5.5.12 and above
Workaround : set context definition mode (Preferences->Tomcat) to 'Context files'.
Explanations :
This problem is due to a change in Tomcat 5.5.12 and above (see http://issues.apache.org/bugzilla/show_bug.cgi?id=37302,
A Tomcat fix was introduced in Tomcat 5.5.20, this fix required a change in the plugin. Version 3.2 contains this change so DevLoader works when context is defined in server.xml. This change requires that context definition is updated.
-------------------------
Version 3.1
------------
Nothing new since version 3.1 beta
(Excepted some japanese translations, thank you to Yae Suzuki)
-------------------------
Version 3.1 beta
------------
New features :
- Projects list in source path could be computed automatically (there is a new checkbox in Source path preference page).
Computed source path contains all opened Tomcat projects and their prerequisites.
Fixed :
- Can't open Tomcat projects properties page on Eclipse 3.1M6
- Extra information not added to context definition when switching context declaration mode from 'server.xml' to 'context file'.
- DevLoader problems when webapp root directory was set : .#webclasspath file was always created at project root instead of web app root.
Thanks to Ben Turner.
- Starting and stopping Tomcat was logged in .log file.
- Preferences pages were sometimes too large and did not have scrollbars (several buttons and fields were hidden).
-------------------------
Version 3.0
------------
New features :
- in main preference page add a way to choose how contexts are declared :
- definition in server.xml (previous version allowed only this)
- creation of a context file (recommended way with Tomcat 5)
- add an 'advanced' preference page to simplify the main preference page.
- add a field in Tomcat properties page to set extra information to generated context definitions
- Tomcat projects build path are automatically updated when Tomcat version is changed
Fixed :
- It is no more possible to add Tomcat projects to Tomcat classpath (they won't be listed in preference page)
- TOMCAT_HOME was added to project build path (when Tomcat 4 was selected in Tomcat preferences).
Before Eclipse 3.0 (final release) this could make Eclipse hangs, see this bug report https://bugs.eclipse.org/bugs/show_bug.cgi?id=64646
Eclipse 3.0 won't build the project.
Many thanks to Jerry Lampi
- Unable to start Tomcat or to open Tomcat project properties when using DevLoader and allowing circular dependencies for Java projects.
- By default, new Tomcat projects were not added to source path
- When using Tomcat 5, Eclipse does not stop on breakpoints set in generated java files for JSP. This is fixed only for new Tomcat projects, for existing ones follow those steps :
- Edit your Tomcat project Java Build Path
- in 'Source' tab, check 'Allow output folders for source folders'
- in the list named 'Source folders on build path', select '%Your_project%/work' and 'Output Folder'
- select the 'Edit' button, check 'Specific output folder' and enter 'work' in the text field.
-------------------------
Version 2.2.1
------------
Fixed :
- starting Tomcat 5.0.15 or 5.0.16 failed
Version 2.2 works with Tomcat 5.0.14 (and previous 5.0.x), in Tomcat 5.0.15 a change in Tomcat command line was introduced.
Version 2.2.1 runs Tomcat according to this change so Tomcat 5.0.15, 5.0.16 could be started.
Trying to run version 5.0.14 will fail if you select 'Tomcat 5.x' in Tomcat preference page, a workaround is to select 'Tomcat 4.1.x' instead of 'Tomcat 5.x' (Tomcat 4.1.x and Tomcat 5.0.14 has the same starting command line)
-------------------------
Version 2.2
------------
New features :
- add two buttons on Tomcat JVM preference page :
- 'Create a launch Configuration' : add a launch configutation to start Tomcat from menus Run->Run... and Run->Debug...
- 'dump configuration to .log' : write all parameters use by the plug-in to launch Tomcat in /.metadata/.log
- see below (version 2.2beta and 2.1.1beta) for other new features from version 2.1
Fixed :
- Starting Tomcat 4.1.29 failed
-------------------------
Version 2.2beta2
------------
Fixed :
- Starting Tomcat failed if Tomcat directory contains whitespaces
-------------------------
Version 2.2beta
------------
(Jump to version 2.2 because there are several new features)
This version works on Eclipse 2.1.x and Eclipse 3.0M4.
New features :
- Tomcat project menu has a new option to ask Tomcat to reload the application.
This feature uses the Tomcat manager application. This application is enabled by default but for security reasons there no default user.
The plug-in add a 'Tomcat Manager App' preference page to set which URL and which tomcat user to use (there is a default value for the url and a button to add a user to tomcat-users.xml).
- Add a 'source path' preference page : with previous versions all Java and Tomcat projects were visible by Eclipse Debugger.
If a class was defined in two projects Eclipse debugger sometimes show the wrong source code.
Using this preference page user can set in which projects Eclipse debuger will look up source code if Tomcat JVM reaches a breakpoint.
- when a new project is created, .cvsignore files are created in the following directories : work and WEB-INF/classes
- user can activate Tomcat Security Manager in preference page.
(for more information about Security Manager see : http://jakarta.apache.org/tomcat/tomcat-4.1-doc/security-manager-howto.html)
Fixed :
- From version 2.1.1 beta :
- In preference page Catalina base field is not saved
- On Linux, starting Tomcat failed with a NoClassDefFoundError.
- According to catalina.bat, the plugin will now set java.io.tempdir property
- Tomcat 5 work dir should not include org.apache.jsp.
- User should be warned if Tomcat home is not set in preference page
Oth
没有合适的资源?快使用搜索试试~ 我知道了~
Tomcat 软件下载

共26个文件
gif:12个
properties:6个
zip:2个

需积分: 15 7 下载量 39 浏览量
2010-10-04
04:06:59
上传
评论
收藏 276KB ZIP 举报
温馨提示
Tomcat 很受广大程序员的喜欢,因为它运行时占用的系统资源小,扩展性好,支持负载平衡与邮件服务等开发应用系统常用的功能;而且它还在不断的 tomcat标志 改进和完善中,任何一个感兴趣的程序员都可以更改它或在其中加入新的功能。 Tomcat 是一个小型的轻量级应用服务器,在中小型系统和并发访问用户不是很多的场合下被普遍使用,是开发和调试JSP 程序的首选。对于一个初学者来说,可以这样认为,当在一台机器上配置好Apache 服务器,可利用它响应对HTML 页面的访问请求。实际上Tomcat 部分是Apache 服务器的扩展,但它是独立运行的,所以当你运行tomcat 时,它实际上作为一个与Apache 独立的进程单独运行的。 这里的诀窍是,当配置正确时,Apache 为HTML页面服务,而Tomcat 实际上运行JSP 页面和Servlet。另外,Tomcat和IIS、Apache等Web服务器一样,具有处理HTML页面的功能,另外它还是一个Servlet和JSP容器,独立的Servlet容器是Tomcat的默认模式。不过,Tomcat处理静态HTML的能力不如Apache服务器
资源推荐
资源详情
资源评论

























收起资源包目录






























共 26 条
- 1
资源评论


zj0910
- 粉丝: 145
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


最新资源
- XP-网络故障解决措施全集.doc
- 电气自动化在水利水电工程中的应用分析1.docx
- 时间触发通信:原理与应用
- 基于JSP的教学管理系统大学本科方案设计书.doc
- 基于PLC的物料分拣控制系统的设计.doc
- 实验项目管理-需求书.doc
- 最新高端简约英文版互联网科技金融商务工作计划总结PPT模PPT模板.pptx
- 移动通信技术与计算机网络.docx
- 面翻洪海广告设备有限公司项目管理书.doc
- 电网调度自动化系统的应用.pdf
- 互联网+时代高校线上线下混合式教学模式探究.docx
- 2017级大数据技术与应用专业人才培养方案.doc
- 论网络虚拟财产的民法界定.docx
- 基于 Python 实现自动驾驶的规划与控制代码
- 酒店无线网络覆盖解决方案.docx
- 电子科技16秋《供配电系统监控与自动化》在线作业2-辅导资料.doc
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制
