无法将Smartgwt应用程序与mysql数据库远程服务器连接

时间:2013-06-18 10:58:44

标签: mysql smartgwt

我一直在尝试将smartgwt客户端应用程序连接到mysql服务器 我已经创建了服务器端实现'MySQLConection' 和客户端同步和异步接口。 我在入口点类中创建了一个RPC对象,但每次我尝试启动它时都会得到

Line 13: No source code is available for type java.lang.ClassNotFoundException; did you forget to inherit a required module?
Line 13: No source code is available for type java.sql.SQLException; did you forget to inherit a required module?

第13行我有

ArrayList onLoad() throws ClassNotFoundException, SQLException, IOException;

我已经在* .gwt.xml文件中添加了标签 还包括 jar文件 我在谷歌搜索并访问了许多链接,但没有解决我的问题 任何帮助将不胜感激..

这是我的连接代码

public Connection MySQLConnection() {
        try {
            Class.forName("com.mysql.jdbc.Driver");
        } catch (ClassNotFoundException e) {

            e.printStackTrace();
            return null;
        }

        Connection connection = null;

        try {
            connection = (Connection) DriverManager.getConnection(url, user, pass);

        } catch (SQLException e) {

            e.printStackTrace();
            return null;
        }

        return connection;
    }

这是我的* gwt.xml代码

<module rename-to='Abc'>
    <inherits name="com.google.gwt.user.User" />
    <inherits name="com.google.gwt.user.theme.standard.Standard" />
    <inherits name="com.smartgwt.SmartGwt" />
    <entry-point class="com.xyz.client.Abc" />


    <!-- Inherit the default GWT style sheet. You can change -->
    <!-- the theme of your GWT application by uncommenting -->
    <!-- any one of the following lines. -->
    <!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
    <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
    <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->

    <!-- Other module inherits -->
    <!-- <inherits name="com.smartgwt.SmartGwt"/> -->
    <inherits name="com.smartgwt.SmartGwtNoTheme" />
    <inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlue" />
    <inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlueResources" />

    <servlet class="com.xyz.server.MySQLConnection" path="/MySQLConnection" />
    <source path='client' />
    <source path='shared' />



</module>

我在条目类中调用连接如下

rpc = (DBConnectionAsync) GWT.create(DBConnection.class);

谢谢!

1 个答案:

答案 0 :(得分:0)

您遇到此问题是因为您必须在客户端文件夹中包含的类中编写一些访问ClassNotFoundException, SQLException, IOException的代码。

此文件夹中的任何类都无法访问每个Java类。

您的服务器端逻辑应该写在 server 文件夹中包含的类中。

要了解GWT的项目结构,请查看以下链接:

https://developers.google.com/web-toolkit/doc/1.6/DevGuideOrganizingProjects#DevGuideDirectoriesPackageConventions

要了解为什么不能使用客户端包中的每个类,请查看以下链接:

GWT - did you forget to inherit a required module?