超市管理项目(SMBMS)编写(第一部分)

超市管理项目(SMBMS)编写(第一部分)

第一部分为准备工作:
一、打开编程软件(IDEA)
二、创建一个MAVEN项目(使用webapp模板,也可以自己创建)

三、将web.xml文件配置为最新的4.0版(可以在下载的Tomcat文件的webapps文件下的web.xml复制最新的版本)
四、配置Tomcat:点击idea中的run-Edit Configurations配置好相关信息 如图
在这里插入图片描述
在这里插入图片描述
五、启动配置的Tomcat(能跑起来)后,进行下一步
六、导入项目jar包:1.在pom.xml下配置依赖
2.配置依赖代码为:

javax.servlet servlet-api 2.5 javax.servlet.jsp jsp-api 2.2 javax.servlet.jsp.jstl jstl-api 1.2 taglibs standard 1.1.2 mysql mysql-connector-java 5.1.47

3.如果代码报错可以刷新build在这里插入图片描述

七、创建项目结构:1.创建MySQL数据库(数据库名:smbms表为:*

在这里插入图片描述

八、编写实体类ORM 映射(表——类)*
1.User类在这里插入图片描述
2.Bill类

在这里插入图片描述

3.Provider类

在这里插入图片描述
4.Role类

在这里插入图片描述

九、编写基础公共类:
1.数据库配置文件 (db.properties)
注:在src-main-resources包下创建文件(file)db,properties
配置文件如图:
在这里插入图片描述
代码://数据库属性
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306?useUnicode=true&characterEncoding=utf-8
username=root
password=1234

2.编写数据库的公共类(BaseDap类)
代码:package com.wanggai.dao;

import java.io.InputStream;
import java.sql.*;
import java.util.Properties;

public class BaseDao {
private static String driver;
private static String url;
private static String username;
private static String password;
//静态代码块,类加载的时候就初始化了
static{
Properties properties = new Properties();
//获取类加载器加载数据库属性
InputStream is = BaseDao.class.getClassLoader().getResourceAsStream(“db.properties”);

    try {
        properties.load(is);
    } catch (Exception e) {
        e.printStackTrace();
    }
    //得到数据库属性
     driver = properties.getProperty(driver);
     url = properties.getProperty(url);
     username=properties.getProperty(username);
     password=properties.getProperty(password);
}

//获取数据库连接
public static Connection getConnection(){
Connection conn =null;
try {
Class.forName(driver);
conn = DriverManager.getConnection(url, username, password);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
return conn;
}
//编写查询语句(参数有:1.连接 2.sql 3.Object[] 4.ResultSet 5.PreparedStatement)
public static ResultSet execute(Connection connection,String sql,Object[] params,PreparedStatement preparedStatement,ResultSet resultSet) throws Exception {
preparedStatement= connection.prepareStatement(sql);
for (int i=0;i<params.length;i++){
preparedStatement.setObject(i+1,params[i]);
}
resultSet= preparedStatement.executeQuery(sql);
return resultSet;
}
//编写增、删、改语句
public static int execute(Connection connection,String sql,Object[] params,PreparedStatement preparedStatement) throws Exception {
//预编译
preparedStatement= connection.prepareStatement(sql);
for (int i=0;i<params.length;i++){
preparedStatement.setObject(i+1,params[i]);
}
int ok= preparedStatement.executeUpdate();
return ok;
}
//释放资源
public static boolean closeResource(Connection connection,PreparedStatement preparedStatement,ResultSet resultSet){
boolean flag=true;
if (resultSet!=null){
try {
resultSet.close();
} catch (SQLException throwables) {
throwables.printStackTrace();
flag=false;
}
}

    if (preparedStatement!=null){
        try {
            preparedStatement.close();
        } catch (SQLException throwables) {
            throwables.printStackTrace();
            flag=false;
        }
    }

    if (connection!=null){
        try {
            connection.close();
        } catch (SQLException throwables) {
            throwables.printStackTrace();
            flag=false;
        }
    }
    return flag;
}

}

3.编写字符集过滤器(CharacterEncodingFilter类)
要导入Tomcat文件下的servlet-api的jar包
在这里插入图片描述

代码:
package com.wanggai.filter;

import javax.servlet.*;
import java.io.IOException;

public class CharacterEncodingFilter implements Filter {
public void init(FilterConfig filterConfig) throws ServletException {

}

public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {

servletRequest.setCharacterEncoding(“utf-8”);
servletResponse.setCharacterEncoding(“utf-8”);
filterChain.doFilter(servletRequest,servletResponse);
}

public void destroy() {

}

}

此后立即在web.xml文件下配置filter
在这里插入图片描述

代码:

CharacterEncodingFilter
com.wanggai.filter.CharacterEncodingFilter


CharacterEncodingFilter
/*

十、导入静态资源(static)此资源要导入到webapps包下
: 包在guthub中搜索smbms即可得到
第一部分(准备工作完成)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值