• 大小: 29.65MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-24
  • 语言: 其他
  • 标签: Spring  SpringMVC  Mybatis  

资源简介

采用ssm框架设计的航空票务系统,其包括订票,注册,航班管理

资源截图

代码片段和文件信息

package com.system;

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

import com.system.DBConn;

public class Common {
public String GetWebtitle()
{
return “航空订票系统“;
}
 
 

//返回修改结果
public  boolean Update (String sql)

DBConn conn = null; 
conn =new DBConn();
return conn.Update(sql);


//返回RS
public ResultSet GetResultSet(String sql)
{
DBConn conn = null; 
conn =new DBConn();
return conn.GetResultSet(sql);
}



/**
 * 检测是管理员登录 
 * @return true 是管理员
 *  false 不是管理员
 */
//验证用户登录 
public int CheckAdminLogin(String usernameString userpass) {
DBConn conn = null; 
try {
String sql = “select id from admininfo where adname=? and adpass=?“;
conn = new DBConn();
PreparedStatement pStmt = conn.prepareStmt(sql);
pStmt.setString(1username);
pStmt.setString(2userpass);
ResultSet rs = conn.executeQuery();
if (rs.next()){
    return rs.getInt(“id“);
}
return 0;
} catch (SQLException e) {
e.printStackTrace();
return 0;
} finally {
conn.close(); 
}
}
 
 


/**
 * 检测是管理员登录 
 * @return true 是管理员
 *  false 不是管理员
 */
//验证用户登录 
public int CheckUserLogin(String usernameString userpass) {
DBConn conn = null; 
try { 
String sql = “select * from userinfo where mName=? and mPass=? “;

conn = new DBConn();
PreparedStatement pStmt = conn.prepareStmt(sql);
pStmt.setString(1username);
pStmt.setString(2userpass);
ResultSet rs = conn.executeQuery();
if (rs.next()){
    return rs.getInt(“id“);
}
return 0;
} catch (SQLException e) {
e.printStackTrace();
return 0;
} finally {
conn.close(); 
}
}
 



//验证管理员旧密码
public int CheckOldPass(String uidString upass)
{
DBConn conn=null ;
try
{
String sql = “select * from admininfo where ID=? and ADPass=?“;
conn = new DBConn();
PreparedStatement pStmt = conn.prepareStmt(sql);
pStmt.setString(1uid);
pStmt.setString(2upass);
ResultSet rs = conn.executeQuery();
    rs.next();
    return rs.getInt(“ID“);
}catch(SQLException e) {
e.printStackTrace();
return 0;
} finally {
conn.close(); 

}
 

//保存管理员新密码
public int ChangeNewPass(String uidString newpass)
{
DBConn conn=null ;
try
{
String sql = “update admininfo set ADPass=? where ID=?“;
conn = new DBConn();
PreparedStatement pStmt = conn.prepareStmt(sql);
pStmt.setString(1newpass);
pStmt.setString(2uid);
 int i = conn.executeUpdate(); 
    if ( i >0)
     return 1;
    else 
     return 0;
}catch(SQLException e) {
e.printStackTrace();
return 0;
} finally {
conn.close(); 
}

}




}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-13 01:41  systemssm20180713\
     文件        1342  2016-08-08 22:14  systemssm20180713\.classpath
     目录           0  2018-07-13 01:43  systemssm20180713\.myeclipse\
     文件         319  2017-07-12 08:53  systemssm20180713\.mymetadata
     文件        1760  2018-05-29 02:09  systemssm20180713\.project
     目录           0  2018-07-13 01:41  systemssm20180713\.settings\
     文件         493  2016-05-09 08:43  systemssm20180713\.settings\.jsdtscope
     文件        1009  2018-05-29 02:11  systemssm20180713\.settings\com.genuitec.eclipse.j2eedt.core.prefs
     文件         247  2016-08-08 22:14  systemssm20180713\.settings\com.genuitec.eclipse.migration.prefs
     文件         395  2016-05-09 08:43  systemssm20180713\.settings\org.eclipse.jdt.core.prefs
     文件         567  2018-05-29 02:11  systemssm20180713\.settings\org.eclipse.wst.common.component
     文件         346  2016-08-08 22:14  systemssm20180713\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2016-05-09 08:43  systemssm20180713\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2016-05-09 08:43  systemssm20180713\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2018-07-13 01:41  systemssm20180713\WebRoot\
     目录           0  2018-07-13 01:41  systemssm20180713\WebRoot\meta-INF\
     文件          36  2016-05-09 08:43  systemssm20180713\WebRoot\meta-INF\MANIFEST.MF
     文件         685  2017-07-12 09:17  systemssm20180713\WebRoot\StateSQ.jsp
     目录           0  2018-07-13 01:42  systemssm20180713\WebRoot\WEB-INF\
     目录           0  2018-07-13 01:42  systemssm20180713\WebRoot\WEB-INF\classes\
     目录           0  2018-07-13 01:41  systemssm20180713\WebRoot\WEB-INF\classes\meta-INF\
     文件          25  2018-03-22 13:01  systemssm20180713\WebRoot\WEB-INF\classes\meta-INF\MANIFEST.MF
     文件        3965  2017-12-01 09:14  systemssm20180713\WebRoot\WEB-INF\classes\applicationContext.xml
     目录           0  2018-07-13 01:41  systemssm20180713\WebRoot\WEB-INF\classes\com\
     目录           0  2018-07-13 01:41  systemssm20180713\WebRoot\WEB-INF\classes\com\system\
     文件        2941  2018-05-29 02:09  systemssm20180713\WebRoot\WEB-INF\classes\com\system\Common.class
     文件        2921  2018-05-29 02:09  systemssm20180713\WebRoot\WEB-INF\classes\com\system\DBConn.class
     目录           0  2018-07-13 01:42  systemssm20180713\WebRoot\WEB-INF\classes\common\
     目录           0  2018-07-13 01:42  systemssm20180713\WebRoot\WEB-INF\classes\common\myUtils\
     文件         448  2018-03-22 13:10  systemssm20180713\WebRoot\WEB-INF\classes\common\myUtils\ConditionMap.class
     文件         755  2018-03-22 13:10  systemssm20180713\WebRoot\WEB-INF\classes\common\myUtils\ExcelError.class
............此处省略360个文件信息

评论

共有 条评论