Java学习Day34:图书管理小项目

2024-08-23 22:44

本文主要是介绍Java学习Day34:图书管理小项目,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

搭建过程

1.根据需求设计数据库

  • 概念设计:使用ER图等工具设计数据库概念模型,明确实体、属性、关系。
  • 逻辑设计:将概念模型转换为数据库表结构,确定主键、外键、索引等。
  • 物理设计:根据数据库管理系统的特性进行物理存储设计,如文件组织、存储分配等(通常由数据库管理系统自动处理)。
  • 编写SQL脚本:创建数据库、表、视图、存储过程等。

=========================================================================

=========================================================================

2.后端导入德鲁伊的proprities文件

=========================================================================

3.书写德鲁伊工具类简化后去datasouse

=========================================================================

public class druidUtils {private static DataSource dataSource;static {Properties properties =new Properties();try {properties.load(druidUtils.class.getClassLoader().getResourceAsStream("JDBC_durid/druid.properties"));dataSource= DruidDataSourceFactory.createDataSource(properties);} catch (IOException e) {throw new RuntimeException(e);} catch (Exception e) {throw new RuntimeException(e);}}private druidUtils(){}//私有构造,防止外部实例化此类public static Connection getConnection() throws SQLException {//获取链接模块return dataSource.getConnection();}public static void close(Connection  con, PreparedStatement pst){if (con!=null){try {con.close();} catch (SQLException e) {throw new RuntimeException(e);}}if (pst!=null){try {pst.close();} catch (SQLException e) {throw new RuntimeException(e);}}}public static  DataSource getDataSource(){return dataSource;}public static void close(Connection  con, PreparedStatement pst, ResultSet rst) {close(con,pst);if (rst!=null){try {rst.close();} catch (SQLException e) {throw new RuntimeException(e);}}}
}

=========================================================================

4.BaseDao接口设计

=========================================================================

package JDBC_durid;import java.util.List;public interface bookBaseDao {public int select();//显示图书public int update(book b);//更新操作public int add(book b);//新增public int deleat();//删除public List<book> selectname();public int brow();//借书public int huan();//归还书
}

5.设计与数据库中存储对象相同的类

=========================================================================

 

6.设计BaseDao接口实现类

=========================================================================

public class bookBaseDaoImp implements bookBaseDao {static Scanner scanner =new Scanner(System.in);JdbcTemplate jdbcTemplate =null;public bookBaseDaoImp(){jdbcTemplate=new JdbcTemplate(druidUtils.getDataSource());}@Overridepublic int select() {List<book> arr= jdbcTemplate.query("select count, bookname,author,price,type from book",new BeanPropertyRowMapper<book>(book.class));for (book b:arr) {if (b.getCount()>0){System.out.println("book{bookname = " + b.getBookname() + ", author = " + b.getAuthor() + ", price = " + b.getPrice() + ", type = " + b.getType()+"   还剩"+b.getCount()+"本书 }");}else if (b.getCount()==0){System.out.println("book{bookname = " + b.getBookname() + ", author = " + b.getAuthor() + ", price = " + b.getPrice() + ", type = " + b.getType()+"   已借阅! }");}}return 0;}@Overridepublic int update(book b) {jdbcTemplate.update("insert into book values (?,?,?,?,?)",b.getCount(), b.getBookname(),b.getAuthor(),b.getPrice(),b.getType());return 1;}@Overridepublic int add(book b) {return 0;}@Overridepublic int deleat() {System.out.println("请输入删除图书的名称:");String name =scanner.next();jdbcTemplate.update("delete from book where bookname=?;",name);return 1;}@Overridepublic List<book> selectname(){System.out.println("请输入查询图书的名称:");String name =scanner.next();return jdbcTemplate.query("select  * from book where bookname=? ",new BeanPropertyRowMapper<book>(book.class),name);}@Overridepublic int brow() {String s =scanner.next();List<book> arr= jdbcTemplate.query("select * from book where bookname=?",new BeanPropertyRowMapper<book>(book.class),s);int count =arr.get(0).getCount();if (count==0){return 0;}else if (arr.get(0).getCount()>0){System.out.println("已借阅!");jdbcTemplate.update("update book set count = ? where bookname = ?",count-1,s);}return --count;}@Overridepublic int huan() {String s =scanner.next();List<book> arr= jdbcTemplate.query("select * from book where bookname=?",new BeanPropertyRowMapper<book>(book.class),s);book b = arr.get(0);int a = jdbcTemplate.update("update book set count = ? where bookname = ?",b.getCount()+1,s);return b.getCount()+1;}
}

7.设计前端交互

=========================================================================

public class choise {static Scanner scanner =new Scanner(System.in);static bookBaseDaoImp bookImpDao=null;static {bookImpDao= new bookBaseDaoImp();}public static void main(String[] args) {System.out.println("请输入选择你的你的姓名:");String user =scanner.next();System.out.println("请输入选择你的身份:1-》管理员 , 2-》普通用户");int num =scanner.nextInt();if (num==2){while (true){if (usersystem(user)) break;}} else if (num==1) {while (true){if (managerSystem(user)) break;}}}private static boolean usersystem(String user) {System.out.println("hello ,用户:"+ user +"欢迎来到图书小练习系统");System.out.println("=====用户菜单=====");System.out.println("1.查找图书");System.out.println("2.借阅图书");System.out.println("3.归还图书");System.out.println("0.退出系统");System.out.println("=====用户菜单=====");System.out.println("请输入你的操作:");int choise1= scanner.nextInt();if (choise1==1){List<book> arr=  bookImpDao.selectname();System.out.println(arr.get(0));}if (choise1==2){System.out.println("请输入借阅图书的名称:");int a = bookImpDao.brow();System.out.println("此书还剩"+a+"本!");}if (choise1==3){System.out.println("请输入归还图书的名称:");System.out.println("已归还,书库中还剩"+bookImpDao.huan()+"本!");}if (choise1==0){return true;}return false;}private static boolean managerSystem(String user) {System.out.println("hello ,管理员:"+ user +"欢迎来到图书小练习系统");System.out.println("=====管理员菜单=====");System.out.println("1.查找图书");System.out.println("2.新增图书");System.out.println("3.删除图书");System.out.println("4.显示图书");System.out.println("0.退出系统");System.out.println("=====管理员菜单=====");System.out.println("请输入你的操作:");int choise1= scanner.nextInt();if (choise1==1){List<book> arr=  bookImpDao.selectname();System.out.println(arr.get(0));}if (choise1==2){book book1=new book();System.out.println("请输入新增图书的数量:");int count = scanner.nextInt();book1.setCount(count);System.out.println("请输入新增图书的名称:");String name =scanner.next();book1.setBookname(name);System.out.println("请输入新增图书的作者:");String auther =scanner.next();book1.setAuthor(auther);System.out.println("请输入新增图书的价格:");int price = scanner.nextInt();book1.setPrice(price);System.out.println("请输入新增图书的种类:");String type =scanner.next();book1.setType(type);int a = bookImpDao.update(book1);System.out.println(a);}if (choise1==3){bookImpDao.deleat();}if (choise1==4){System.out.println("显示图书");bookImpDao.select();}if (choise1==0){return true;}return false;}
}

总结:

1.需求分析一定要尽可能全面,不然后续的修改麻烦;

2.清晰的三层架构可以使我们有条理的连接数据库;

3.对于错误的分析尽可能少依赖AI,先自己检查问题!

这篇关于Java学习Day34:图书管理小项目的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1100710

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

Ilya-AI分享的他在OpenAI学习到的15个提示工程技巧

Ilya(不是本人,claude AI)在社交媒体上分享了他在OpenAI学习到的15个Prompt撰写技巧。 以下是详细的内容: 提示精确化:在编写提示时,力求表达清晰准确。清楚地阐述任务需求和概念定义至关重要。例:不用"分析文本",而用"判断这段话的情感倾向:积极、消极还是中性"。 快速迭代:善于快速连续调整提示。熟练的提示工程师能够灵活地进行多轮优化。例:从"总结文章"到"用

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template