超市管理项目(SMBMS)编写(第一部分)
第一部分为准备工作:
一、打开编程软件(IDEA)
二、创建一个MAVEN项目(使用webapp模板,也可以自己创建)
三、将web.xml文件配置为最新的4.0版(可以在下载的Tomcat文件的webapps文件下的web.xml复制最新的版本)
四、配置Tomcat:点击idea中的run-Edit Configurations配置好相关信息 如图
五、启动配置的Tomcat(能跑起来)后,进行下一步
六、导入项目jar包:1.在pom.xml下配置依赖
2.配置依赖代码为:
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即可得到
第一部分(准备工作完成)