• 大小: 0.59M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


使用 JSP+Servlet 实现理财产品信息管理系统,MySQL5.5 作为后台数据库,实现查看理财 和增加理财功能,具体要求如下: 打开首页页面,默认显示所有记录,且按发售起始日降序排序,查询列表使用样式实现标题字 体、标题背景色和隔行变色效果

资源截图

代码片段和文件信息

package cn.jbit.Financing.dao;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import cn.jbit.Financing.util.DatabaseUtil;

/**
 * 执行数据库操作的工具类。
 */
public class baseDao {

private Connection conn;

/**
 * 增、删、改操作的方法
 * 
 * @param sql   sql语句
 * @param prams 参数数组
 * @return 执行结果
 * @throws SQLException
 */
protected int executeUpdate(String sql object... params) throws SQLException {
int result = 0;
conn=DatabaseUtil.getConnection();
PreparedStatement pstmt = null;
try {
pstmt = conn.prepareStatement(sql);
for (int i = 0; i < params.length; i++) {
pstmt.setobject(i + 1 params[i]);
}
result = pstmt.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
throw e;
} finally {
DatabaseUtil.closeAll(null pstmt null);
}
return result;
}

/**
 * 查询操作的方法
 * 
 * @param sql    sql语句
 * @param params 参数数组
 *

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-09-25 14:15  FinancingProduct\
     文件        1219  2018-09-25 08:49  FinancingProduct\.classpath
     文件        1066  2018-09-24 19:52  FinancingProduct\.project
     目录           0  2018-09-24 20:23  FinancingProduct\.settings\
     文件         564  2018-09-24 19:52  FinancingProduct\.settings\.jsdtscope
     文件         210  2018-09-26 21:51  FinancingProduct\.settings\org.eclipse.core.resources.prefs
     文件         364  2018-09-24 19:52  FinancingProduct\.settings\org.eclipse.jdt.core.prefs
     文件         587  2018-09-24 20:23  FinancingProduct\.settings\org.eclipse.wst.common.component
     文件         414  2018-09-24 19:52  FinancingProduct\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2018-09-24 19:52  FinancingProduct\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2018-09-24 19:52  FinancingProduct\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2018-09-25 14:15  FinancingProduct\WebRoot\
     目录           0  2018-09-24 19:52  FinancingProduct\WebRoot\meta-INF\
     文件          39  2018-09-24 19:52  FinancingProduct\WebRoot\meta-INF\MANIFEST.MF
     目录           0  2018-09-24 19:52  FinancingProduct\WebRoot\WEB-INF\
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\dao\
     文件        1865  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\dao\baseDao.class
     文件         484  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\dao\FinancingDao.class
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\dao\impl\
     文件        4531  2018-10-18 17:37  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\dao\impl\FinancingDaoImpl.class
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\entity\
     文件        2173  2018-10-18 16:35  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\entity\Financing.class
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\service\
     文件         500  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\service\FinancingService.class
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\service\impl\
     文件        1377  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\service\impl\FinancingServiceImpl.class
     目录           0  2018-10-18 16:14  FinancingProduct\WebRoot\WEB-INF\classes\cn\jbit\Financing\servlet\
............此处省略41个文件信息

评论

共有 条评论