Here's how to get hibernate-tools 3.1beta4 to work, disabling any MyEclipse Hibernate functionality (NOTE: This is only meant as a workaround if you absolutely NEED hibernate-tools, following the steps below might seriously screw your Eclipse/MyEclipse installation. So please only proceed if you really know what you're doing!)
OK, on to the gory details...
以下翻译开始
- Locate the MyEclipse install location, it should contain two folders "plugins" and "features". Let's call this $MYECLIPSE.
进入MyEclipse目录,然后将找到plugins和feature两个目录,下面我们将MyEclipse的目录叫做$MYECLIPSE
- Create two folders named "disabled_plugins" and "disabled_features" in $MYECLIPSE.
在$MYECLIPSE建立两个空白目录disabled_plugins和disabled_feature
- Move the MyEclipse Hibernate feature (folder: $MYECLIPSE/features/com.genuitec.myeclipse.hibernate_4.0.100 ) to the "disabled_features" folder
把“$MYECLIPSE/features/com.genuitec.myeclipse.hibernate_4.0.100”目录移动到disabled_features中
- Move the following folders from $MYECLIPSE/plugins to "disabled_plugins":
- com.genuitec.eclipse.hibernate_4.0.100
- com.genuitec.myeclipse.hibernate_4.0.100
- org.hibernate.eclipse.console_4.0.100
- org.hibernate.eclipse.mapper_4.0.100
- org.hibernate.eclipse_4.0.100
把$MYECLIPSE/plugins 中以上的五个目录或文件拷贝到 disabled_plugins目录中
- Last step: remove the dependency from the main MyEclipse feature. Open the file $MYECLIPSE/features/com.genuitec.myeclipse.enterprise.workbench_4.0.100/feature.xml.
Locate the following snippet:
最后一步,修改“$MYECLIPSE/features/com.genuitec.myeclipse.enterprise.workbench_4.0.100/feature.xml”这个文件,找到下列代码
Code: |
<includes id="com.genuitec.myeclipse.hibernate" version="4.0.100" name="MyEclipse Hibernate Support"/>
|
... and comment it out, like:
注解它,修改后的代码如下
Code: |
<!-- <includes id="com.genuitec.myeclipse.hibernate" version="4.0.100" name="MyEclipse Hibernate Support"/> -->
|
Now restart Eclipse (preferably using "-clean" switch), install hibernate-tools 3.1 (if you have not already done so) and enjoy!
重新启动MyEcliplse然后按照正常安装插件的方式安装 Hibernate tools 3.1
分享到:
相关推荐
- **MyEclipse Hibernate Tools**:简化Hibernate对象关系映射配置和管理。 - **MyEclipse Spring Tools**:增强对Spring框架的支持,包括自动配置、代码生成等。 - **MyEclipse Struts Tools**:提供Struts应用...
- 清除项目缓存:右键项目 -> "MyEclipse" -> "Web Tools" -> "Clean Project"。 6. **处理框架包冲突** - 在使用特定版本的Struts2时,可能会遇到`antlr-2.7.2.jar`与Hibernate的包冲突问题,导致运行时错误。 ...
1. **插件冲突**:如果你的Eclipse安装了jboss公司的Hibernate Tools插件,可能会与MyEclipse产生冲突。解决这个问题的方法是卸载这些可能导致冲突的插件。 2. **版本升级问题**:如果在未卸载旧版MyEclipse的情况...
### myEclipse 8.5 整合SSH(Spring 3.0, Struts 2.1, Hibernate 3.3)步骤详解 #### 一、准备工作 ...需要注意的是,在实际开发过程中还可能遇到各种具体问题,如配置冲突等,需要根据实际情况进行调试和解决。
### MyEclipse 整合 SSH(Spring + Hibernate + Struts)详细步骤 #### 一、准备工作 1. **JDK 安装与配置** - 安装版本:`jdk1.6.0_17` - 环境变量配置: - `JAVA_HOME`: `C:\jdk1.6.0_17` - `PATH`: `%JAVA_...
- 使用工具如Hibernate Tools或MyEclipse等,根据现有数据库表自动生成相应的实体类、映射文件等。 - 这一步可以极大地提高开发效率,减少手动编写代码的工作量。 #### 二、Hibernate配置 - **Configuration**:...
MyEclipse是一款功能强大的Java集成开发环境,尤其在处理Spring、Hibernate等企业级应用时,它提供了丰富的工具支持。然而,为了满足不同开发者的需求,MyEclipse还允许用户安装额外的插件来扩展其功能。本篇文章将...
- 设置`CLASSPATH`环境变量,包含`%JAVA_HOME%\lib\dt.jar`、`%JAVA_HOME%\lib\tools.jar`以及应用服务器提供的`servlet-api.jar`和`jsp-api.jar`。 2. **安装 Eclipse IDE**: - 解压缩`eclipse-SDK-3.1-win32....
1. **创建目录结构**:在`D:\eclipse\eclipseplugins`中,为每个插件创建相应的目录,例如`MyEclipse`和`hibernate-tools`。 2. **解压插件文件**:将MyEclipse的安装包解压至`D:\eclipse\eclipseplugins\MyEclipse...
在实际开发中,随着项目的复杂度增加,Spring框架的重要性日益凸显,它可以帮助管理业务逻辑、事务处理、安全控制等更复杂的场景,而Struts和Hibernate则分别在视图层和数据访问层发挥着重要作用。通过这种技术栈的...
MyEclipse10集成了多种版本控制系统,如Git、SVN等,使得开发者能够轻松地进行代码版本控制,跟踪每一次修改,回溯错误,甚至实现多人协作时的代码冲突解决。在公司环境中,源码通常会被组织成多个模块或子项目,每...
安装过程中可以选择自定义路径安装JDK和JRE,推荐将两者分别安装在不同的子文件夹内以避免冲突。 安装完成后,需要配置环境变量: 1. **JAVA_HOME**: 创建一个新的系统变量名为“JAVA_HOME”,变量值为JDK的安装...