Struts1 是一个基于 MVC(Model-View-Controller)设计模式的 Java Web 框架,用于简化 Web 应用程序的开发。MySQL 是一个流行的关系型数据库管理系统,广泛用于存储和管理数据。
mysql-connector-java-x.x.x.jar
)添加到项目的类路径中。struts-config.xml
)或通过其他方式(如 properties 文件)配置数据库连接信息,包括 URL、用户名和密码。以下是一个简单的示例,展示如何在 Struts1 中连接 MySQL 数据库并执行查询:
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
public class MyAction extends Action {
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) throws Exception {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 加载 JDBC 驱动
Class.forName("com.mysql.cj.jdbc.Driver");
// 获取数据库连接
String url = "jdbc:mysql://localhost:3306/mydatabase";
String user = "username";
String password = "password";
conn = DriverManager.getConnection(url, user, password);
// 创建 Statement 对象
stmt = conn.createStatement();
// 执行 SQL 查询
String sql = "SELECT * FROM mytable";
rs = stmt.executeQuery(sql);
// 处理查询结果
while (rs.next()) {
String column1 = rs.getString("column1");
String column2 = rs.getString("column2");
// 处理数据...
}
} catch (Exception e) {
e.printStackTrace();
} finally {
// 关闭资源
try {
if (rs != null) rs.close();
if (stmt != null) stmt.close();
if (conn != null) conn.close();
} catch (Exception e) {
e.printStackTrace();
}
}
return mapping.findForward("success");
}
}
com.mysql.cj.jdbc.Driver
)。通过以上步骤和示例代码,你应该能够在 Struts1 中成功连接并操作 MySQL 数据库。
云+社区沙龙online[数据工匠]
企业创新在线学堂
云+社区沙龙online [国产数据库]
云+社区沙龙online [国产数据库]
企业创新在线学堂
云+社区沙龙online [国产数据库]
企业创新在线学堂
企业创新在线学堂
领取专属 10元无门槛券
手把手带您无忧上云