我从 GWT 和休眠开始。我正在阅读https://developers.google.com/web-toolkit/articles/using_gwt_with_hibernate上的教程。
我下载了教程提供的示例代码 (http://google-web-toolkit.googlecode.com/files/gwt_hibernate_base.zip)。这是一个简单的音乐商店,您可以在其中添加帐户和记录。通过执行以下命令,我可以运行它并成功地将帐户和记录添加到数据库中:
(in the data directory) java -cp ../lib/hsqldb.jar org.hsqldb.Server
ant build hosted
这是用于构建它的 build.xml 文件:
<?xml version="1.0" encoding="utf-8" ?>
<project name="Guestbook" default="build" basedir=".">
<!-- Define gwt.home, gwt.dev.jar, appengine.sdk.home -->
<property file="build.properties"/>
<path id="project.class.path">
<pathelement location="war/WEB-INF/classes"/>
<pathelement location="${gwt.home}/gwt-user.jar"/>
<!-- Add any additional non-server libs (such as JUnit) -->
<fileset dir="war/WEB-INF/lib">
<include name="**/*.jar"/>
</fileset>
</path>
<target name="libs" description="Copy libs to WEB-INF/lib">
<mkdir dir="war/WEB-INF/lib" />
<copy todir="war/WEB-INF/lib" file="${gwt.home}/gwt-servlet.jar" />
<!-- Add any additional server libs that need to be copied -->
<copy todir="war/WEB-INF/lib" flatten="true">
<fileset dir="lib/">
<include name="**/*.jar"/>
</fileset>
</copy>
</target>
<target name="javac" depends="libs" description="Compile java source">
<mkdir dir="war/WEB-INF/classes"/>
<javac srcdir="src" includes="**" encoding="utf-8"
destdir="war/WEB-INF/classes"
source="1.5" target="1.5" nowarn="true"
debug="true" debuglevel="lines,vars,source">
<classpath refid="project.class.path"/>
</javac>
</target>
<!-- can add additional arguments like -logLevel INFO or -style PRETTY -->
<target name="gwtc" depends="javac" description="GWT compile to JavaScript">
<java failonerror="true" fork="true" classname="com.google.gwt.dev.Compiler">
<classpath>
<pathelement location="src"/>
<path refid="project.class.path"/>
<pathelement location="${gwt.home}/${gwt.dev.jar}"/>
</classpath>
<!-- add jvmarg -Xss16M or similar if you see a StackOverflowError -->
<jvmarg value="-Xmx256M"/>
<arg value="com.google.musicstore.MusicStore"/>
</java>
</target>
<target name="hosted" depends="javac" description="Run hosted mode">
<java failonerror="true" fork="true" classname="com.google.gwt.dev.DevMode">
<classpath>
<pathelement location="src"/>
<path refid="project.class.path"/>
<pathelement location="${gwt.home}/${gwt.dev.jar}"/>
</classpath>
<jvmarg value="-Xmx256M"/>
<arg value="-startupUrl"/>
<arg value="MusicStore.html"/>
<arg value="com.google.musicstore.MusicStore"/>
<!-- Additional arguments like -style PRETTY or -logLevel DEBUG -->
</java>
</target>
<target name="build" depends="gwtc" description="Build this project" />
<target name="clean" description="Cleans this project">
<delete dir="war/WEB-INF/classes" failonerror="false" />
<delete dir="war/musicstore" failonerror="false" />
</target>
现在我想让这个简单的例子在 Eclipse 中工作。我使用 gwt eclipse 插件创建了一个名为 MusicStore 的项目。然后我复制了教程文件而不更改它们。我无法发布图片,但这里是我的 Eclipse 项目结构的链接:
http://oi50.tinypic.com/t6rn2w.jpg
再次,我从跑步开始
(in the data directory) java -cp ../lib/hsqldb.jar org.hsqldb.Server
然后我尝试在 Eclipse 中运行我的项目,但休眠不起作用。当我尝试在 UI 中添加帐户时,它会提示“保存帐户失败”并且我收到错误 java.lang.NoClassDefFoundError: org/hibernate/Session。
请让我知道我应该如何让示例代码与 eclipse 一起工作。我认为许多刚接触 hibernate 的用户也会想要这样做。
谢谢!