0

我有一些关于如何使用 java 和 html 将数据库与 Web 应用程序连接的问题。抱歉,如果有些描述有误。我有一些数据库,我必须构建 Web 应用程序,把我的数据库放在那里。那么它可能会这样做吗?如果是的话,我必须从什么开始?我知道 java、mysql、html 而不是 JavaScript。谁能帮我。感谢所有提前。
当我在 netbeans 上运行 php 文件时,出现如下错误:

未找到 在此服务器上未找到请求的 URL /SiteTest/index.php。 Apache/2.2.22 (Ubuntu) 服务器在 localhost 端口 80

谢谢大家提前!!

4

2 回答 2

0

学习 JavaScript 是一个不错的起点,因为 Web 应用程序倾向于大量使用它。AngularJS 是新的很酷的东西。

您将需要一个 Java Web 应用程序框架。春天很受欢迎。

有很多东西要学,但你现有的 Java、MySQL 和 HTML 知识会对你有所帮助。

于 2013-10-21T10:32:29.520 回答
0

通过这种方式,您可以连接到数据库:

public Connection getConnection() throws SQLException {

Connection conn = null;
Properties connectionProps = new Properties();
connectionProps.put("user", this.userName);
connectionProps.put("password", this.password);

if (this.dbms.equals("mysql")) {
    conn = DriverManager.getConnection(
               "jdbc:" + this.dbms + "://" +
               this.serverName +
               ":" + this.portNumber + "/",
               connectionProps);
} else if (this.dbms.equals("derby")) {
    conn = DriverManager.getConnection(
               "jdbc:" + this.dbms + ":" +
               this.dbName +
               ";create=true",
               connectionProps);
}
System.out.println("Connected to database");
return conn;
}

更多在这里http://docs.oracle.com/javase/tutorial/jdbc/basics/connecting.html,您也可以在 youtube 上搜索一些教程,只需输入:java datebase connection。Hibernate 框架可以帮助您。您还应该知道 JPA/JDBC。

于 2013-10-21T11:56:47.350 回答