JAVA_GUI之“职工信息管理系统”

2023-11-30 23:50

本文主要是介绍JAVA_GUI之“职工信息管理系统”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

要求:

(一)任务描述
(1)编写一个具有图形用户界面的程序,实现对职工基本信息的管理:
A、添加职工信息(职工工号、姓名、出生年月、基本工资、email);
B、显示职工信息:从文件中读取所有职工信息并显示出来;
C、修改和删除职工信息:能对已有职工记录(除工号外)进行修改,能删除已有职工记录,操作能同步到文件中。
D、统计计算:统计职工人数、基本工资平均值、最高工资、最低工资对应的职工的完整信息。
E、程序的主窗口标题要包含开发者的信息“职工信息管理系统,开发者:张三(XXX),指导老师:YYY”,凡是没有加这个信息的,直接扣20分。
F、职工工号由系统自动生成,是一个字符串,格式为XXXXYYZZ,其中XXXX、YY分别为系统当前的年和月,ZZ为职工序号,
例如:20210378表示2021年3月添加的序号为78的工号。
(二)编程要求
(1)添加职工信息时,能对输入的合法性进行检查,以Emai为例,要求用户从文本框中输入的Email必须是合法的Emai,年月也必须是合法的年月。
(2)职工的信息永久存储到文件,若需要显示所有职工及对已有职工记录进行修改,都必须从文件中读写,确保程序退出后信息能得到保存。
(3)以MVC模式进行开发,M为模型,即职工信息模型,它具有职工基本属性,还提供职工数据文件的读写方法,V是添加、删除、修改、浏览等操作的界面,C是事件监听器对象,用来处理界面事件,将模型和视图联系起来,实现数据的存取。
(4)要求各个界面美观、所有窗口打开时居于屏幕正中。
(5)参考方案(你也可以有自己的方案)
可以参考下面的UML图完成类的设计。
   

 成果:

 大致类图:(其中的UML类图并不标准,刚学),好分析类与方法

效果图:

        具有添加、删除、修改、查找、展示等功能

  

代码:(因为是写在一个文件下的,所以略显冗杂)

//包
package gui_sy3;import java.awt.*;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.FlowLayout;
import java.io.BufferedReader;
import java.io.CharArrayWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;import javax.swing.JButton;
import javax.swing.JFrame;public class Test {//目标文件final String TARGET_FILE = "./temp.txt";File targetFile = new File(TARGET_FILE);public Test() {JFrame jf = new JFrame("职工信息管理系统");jf.setSize(300, 300);jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);JPanel jp0 = new JPanel();JPanel jp1 = new JPanel();JPanel jp2 = new JPanel();JPanel jp3 = new JPanel();JLabel jl0 = new JLabel();jl0.setText("职工信息管理系统");jl0.setFont(new Font(null, Font.PLAIN, 25));  // 设置字体,null 表示使用默认字体jp0.add(jl0);JLabel jl1 = new JLabel("开发者:2000300420");jp1.setLayout(new FlowLayout(FlowLayout.LEFT)); jl1.setFont(new Font(null, Font.PLAIN, 15));  // 设置字体,null 表示使用默认字体jp1.add(jl1);JLabel jl2 = new JLabel("指导老师:李*辉");jp2.setLayout(new FlowLayout(FlowLayout.LEFT)); jl2.setFont(new Font(null, Font.PLAIN, 15));  // 设置字体,null 表示使用默认字体jp2.add(jl2);       JButton jb0 = new JButton("添加");JButton jb1 = new JButton("浏览");jp3.add(jb0);jp3.add(jb1);// 	添加操作jb0.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {try {add();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}}});// 	浏览操作jb1.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {try {look();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}}});// 创建一个垂直盒子容器, 把上面 3 个 JPanel 串起来作为内容面板添加到窗口Box vBox = Box.createVerticalBox();vBox.add(jp0);vBox.add(jp1);vBox.add(jp2);vBox.add(jp3);jf.setContentPane(vBox);
//        jf.pack();jf.setLocationRelativeTo(null);jf.setVisible(true);}// 添加 -> 窗口public void add() throws IOException {JFrame jf = new JFrame("添加职工");jf.setSize(300, 300);jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);JPanel jp0 = new JPanel();JLabel jl0 = new JLabel();jl0.setText("请输入新员工信息:");
//    	jl0.setFont(new Font(null, Font.PLAIN, 10));  // 设置字体,null 表示使用默认字体jp0.setLayout(new FlowLayout(FlowLayout.LEFT));jp0.add(jl0);JPanel jp1 = new JPanel();jp1.add(new JLabel("ID:"));JTextField jtext1 = new JTextField(10);jp1.add(jtext1);JPanel jp2 = new JPanel();jp2.add(new JLabel("姓名:"));JTextField jtext2 = new JTextField(10);jp2.add(jtext2);JPanel jp3 = new JPanel();jp3.add(new JLabel("出生年月:"));JTextField jtext3 = new JTextField(10);jp3.add(jtext3);JPanel jp4 = new JPanel();jp4.add(new JLabel("工资:"));JTextField jtext4 = new JTextField(10);jp4.add(jtext4);JPanel jp5 = new JPanel();jp5.add(new JLabel("Email:"));JTextField jtext5 = new JTextField(10);jp5.add(jtext5);// 第 3 个 JPanel, 使用浮动布局, 并且容器内组件居中显示JPanel jp6 = new JPanel(new FlowLayout(FlowLayout.CENTER));JButton jb06 = new JButton("确认添加");jp6.add(jb06);if(targetFile.createNewFile()) {System.out.println("文件不存在,创建成功");}else {System.out.println("文件存在");} //	添加事件jb06.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {System.out.println("确认添加");try {//打开文件字符输出流FileWriter writer = new FileWriter(targetFile,true);//获取文本显示区文本String[][] result = new String[5][2]; result[0][0] = "ID:";result[0][1] = jtext1.getText();result[1][0] = "姓名:";result[1][1] = jtext2.getText();result[2][0] = "出生年月:";result[2][1] = jtext3.getText();result[3][0] = "工资:";result[3][1] = jtext4.getText();result[4][0] = "Email:";result[4][1] = jtext5.getText();//写入文件writer.write("------------\n");for(int i=0;i<5;i++) {for(int j=0;j<2;j++) {writer.write(result[i][j]);}writer.write("\n");}writer.write("\n");writer.flush();//关闭输出流writer.close(); // 消息对话框无返回, 仅做通知作用JOptionPane.showMessageDialog(jf,"添加成功!","添加",JOptionPane.INFORMATION_MESSAGE);} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}}});// 创建一个垂直盒子容器, 把上面 3 个 JPanel 串起来作为内容面板添加到窗口Box vBox = Box.createVerticalBox();vBox.add(jp0);vBox.add(jp1);vBox.add(jp2);vBox.add(jp3);vBox.add(jp4);vBox.add(jp5);vBox.add(jp6);jf.setContentPane(vBox);//        jf.pack();jf.setLocationRelativeTo(null);jf.setVisible(true);}//	浏览 -> 窗口public void look() throws IOException {JFrame jf = new JFrame("浏览职工信息");
//    	jf.setSize(300, 300);jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);// 第 1 个 JPanel, 使用默认的浮动布局JPanel jp0 = new JPanel();jp0.add(new JLabel("请输入ID    "));JTextField jtext0 = new JTextField(5);jp0.add(jtext0);JButton jb0 = new JButton("按ID查找");jp0.add(jb0);jp0.setLayout(new FlowLayout(FlowLayout.LEFT));JPanel jp1 = new JPanel();jp1.add(new JLabel("请输入姓名"));JTextField jtext1 = new JTextField(5);jp1.add(jtext1);JButton jb1 = new JButton("按姓名查找");jp1.add(jb1);jp1.setLayout(new FlowLayout(FlowLayout.LEFT));JPanel jp2 = new JPanel();JButton jb2=new JButton("修改、删除");jp2.add(jb2);jp2.setLayout(new FlowLayout(FlowLayout.LEFT)); JPanel jp3 = new JPanel();jp3.add(new JLabel("浏览职工信息,总人数:"));JButton jb3=new JButton("查看");jp3.add(jb3);jp3.setLayout(new FlowLayout(FlowLayout.LEFT)); //        // 创建一个 10 行 20 列的文本区域final JTextArea textArea = new JTextArea(15,30);// 设置自动换行textArea.setLineWrap(true);JScrollPane jsp4 = new JScrollPane(textArea,ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);// 添加到内容面板
//        jp4.add(textArea);//        //创建目标文件对象
//        targetFile = new File(TARGET_FILE);
//        if(targetFile.createNewFile()) {
//            System.out.println("文件不存在,创建成功");
//        }else {
//            System.out.println("文件存在");
//        }//	按ID查找jb0.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {System.out.println("按ID查找");//获取文本显示区文本String[][] res = new String[2][2]; res[0][0] = "ID:";res[0][1] = jtext0.getText();res[1][0] = "姓名:";res[1][1] = jtext1.getText();// 读  FileReader in = null;try {in = new FileReader("temp.txt");} catch (FileNotFoundException e2) {// TODO Auto-generated catch blocke2.printStackTrace();}  BufferedReader bufIn = new BufferedReader(in);  String line = null;  String[] datas = new String[100];//读入结果StringBuffer my_result = new StringBuffer();int i=0;int j=0;try {while ( (line = bufIn.readLine()) != null) {  datas[i]=line;i++;}} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}  while(true) {      	if(datas[j].equals(res[0][0]+res[0][1])) {for(int k=0;k<5;k++) {my_result.append(datas[j]);// 添加换行符  my_result.append(System.getProperty("line.separator"));  j++;}break;}j++;if(datas[j]==null) {System.out.println("抱歉,ID未找到!");break;}}// 关闭 输入流  try {bufIn.close();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}  try {in.close();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}//	更新文本显示区内容textArea.setFont(new Font("宋体", Font.BOLD, 15));textArea.setText(my_result.toString());//	清除框内输入字符jtext0.setText("");}});//	按姓名查找jb1.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {System.out.println("按姓名查找");//获取文本显示区文本String[][] res = new String[2][2]; res[0][0] = "ID:";res[0][1] = jtext0.getText();res[1][0] = "姓名:";res[1][1] = jtext1.getText();// 读  FileReader in = null;try {in = new FileReader("temp.txt");} catch (FileNotFoundException e2) {// TODO Auto-generated catch blocke2.printStackTrace();}  BufferedReader bufIn = new BufferedReader(in);  String line = null;  String[] datas = new String[100];//	读入结果StringBuffer my_result = new StringBuffer();int i=0;int j=0;try {while ( (line = bufIn.readLine()) != null) {  datas[i]=line;i++;}} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}while(true) {      	if(datas[j].equals(res[1][0]+res[1][1])) {for(int k=0;k<5;k++) {my_result.append(datas[j-1]);// 添加换行符  my_result.append(System.getProperty("line.separator"));  j++;}break;}j++;if(datas[j]==null) {System.out.println("抱歉,姓名未找到!");break;}}// 关闭 输入流  try {bufIn.close();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}  try {in.close();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}//	更新文本显示区内容textArea.setFont(new Font("宋体", Font.BOLD, 15));textArea.setText(my_result.toString());//  清除框内输入字符jtext1.setText("");}});//	读出到文本区域事件jb3.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {System.out.println("查看->读出到文本区域事件");try {//	字符读入流FileReader reader = new FileReader(targetFile); //	读入缓冲区char[] buffer = new char[1024];//	读入结果StringBuffer result = new StringBuffer();//	每次读入缓冲区的长度int len;//	从读入流中读取文件内容并形成结果while((len = reader.read(buffer)) != -1) {result.append(buffer,0,len);} //	关闭读入流reader.close();//	更新文本显示区内容textArea.setFont(new Font("宋体", Font.BOLD, 15));textArea.setText(result.toString());} catch (FileNotFoundException e1) {// TODO Auto-generated catch blocke1.printStackTrace();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}}});//	修改、删除事件jb2.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {change();}});// 创建一个垂直盒子容器, 把上面 JPanel 串起来作为内容面板添加到窗口Box vBox = Box.createVerticalBox();vBox.add(jp0);vBox.add(jp1);vBox.add(jp2);vBox.add(jp3);vBox.add(jsp4);jf.setContentPane(vBox);jf.pack();jf.setLocationRelativeTo(null);jf.setVisible(true);}//	修改、删除 -> 窗口public void change() {JFrame jf = new JFrame("修改、删除职工信息");jf.setSize(300, 300);jf.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);// 第 1 个 JPanel, 使用默认的浮动布局JPanel jp0 = new JPanel();jp0.add(new JLabel("ID:"));JTextField jtext0 = new JTextField(10);jp0.add(jtext0);JPanel jp1 = new JPanel();jp1.add(new JLabel("姓名:"));JTextField jtext1 = new JTextField(10);jp1.add(jtext1);JPanel jp2 = new JPanel();jp2.add(new JLabel("出生年月:"));JTextField jtext2 = new JTextField(10);jp2.add(jtext2);JPanel jp3 = new JPanel();jp3.add(new JLabel("工资:"));JTextField jtext3 = new JTextField(10);jp3.add(jtext3);JPanel jp4 = new JPanel();jp4.add(new JLabel("Email:"));JTextField jtext4 = new JTextField(10);jp4.add(jtext4);JPanel jp5 = new JPanel();JButton jb51=new JButton("确认修改");jp5.add(jb51);JButton jb52=new JButton("确认删除");jp5.add(jb52);//	修改事件jb51.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {System.out.println("确认修改");//获取文本显示区文本String[][] result = new String[5][2]; result[0][0] = "ID:";result[0][1] = jtext0.getText();result[1][0] = "姓名:";result[1][1] = jtext1.getText();result[2][0] = "出生年月:";result[2][1] = jtext2.getText();result[3][0] = "工资:";result[3][1] = jtext3.getText();result[4][0] = "Email:";result[4][1] = jtext4.getText();   int found = 0;String[] datas = new String[100];FileReader fileReader;try {fileReader = new FileReader("temp.txt");try (BufferedReader buf = new BufferedReader(fileReader)) {String line = null;int i=0;int j=0;
//						System.out.println("1");while((line = buf.readLine() )!= null){datas[i]=line;i++;}
//						System.out.println("2");while(true) {      	if(datas[j].equals(result[0][0]+result[0][1])) {for(int k=0;k<5;k++) {replacTextContent(datas[j],result[k][0]+result[k][1],j);j++;}found = 1;break;}j++;if(datas[j]==null) {JOptionPane.showMessageDialog(jf,"未找到!","警告",JOptionPane.WARNING_MESSAGE);break;}}
//				        System.out.println("3");// 消息对话框无返回, 仅做通知作用if(found == 1) {JOptionPane.showMessageDialog(jf,"修改成功!","修改",JOptionPane.INFORMATION_MESSAGE);}}} catch (FileNotFoundException e1) {// TODO Auto-generated catch blocke1.printStackTrace();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}}//	修改操作   ->		指定行替换txt文件的内容public void replacTextContent(String oldstr, String newStr, int j) throws IOException{//原有的内容String srcStr = oldstr;        //要替换的内容String replaceStr = newStr;     // 读  FileReader in = new FileReader("temp.txt");  BufferedReader bufIn = new BufferedReader(in);  // 内存流, 作为临时流  CharArrayWriter  tempStream = new CharArrayWriter();  // 替换  String line = null;  int i=0;while ( (line = bufIn.readLine()) != null) {  if(i==j) {// 替换每行中, 符合条件的字符串  line = line.replaceAll(srcStr, replaceStr);  }// 将该行写入内存  tempStream.write(line);  // 添加换行符  tempStream.append(System.getProperty("line.separator"));  i++;}  // 关闭 输入流  bufIn.close();  // 将内存中的流 写入 文件  FileWriter out = new FileWriter("temp.txt");  tempStream.writeTo(out);  out.close();  }});//	删除事件jb52.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {System.out.println("确认删除");//获取文本显示区文本String[][] result = new String[5][2]; result[0][0] = "ID:";result[0][1] = jtext0.getText();result[1][0] = "姓名:";result[1][1] = jtext1.getText();result[2][0] = "出生年月:";result[2][1] = jtext2.getText();result[3][0] = "工资:";result[3][1] = jtext3.getText();result[4][0] = "Email:";result[4][1] = jtext4.getText();   int found = 0;String[] datas = new String[100];FileReader fileReader;try {fileReader = new FileReader("temp.txt");try (BufferedReader buf = new BufferedReader(fileReader)) {String line = null;int i=0;int j=0;
//						System.out.println("1");while((line = buf.readLine() )!= null){datas[i]=line;i++;}
//						System.out.println("2");while(true) {      	if(datas[j].equals(result[0][0]+result[0][1])) {for(int k=0;k<6;k++) {DeleteTextContent(datas[j-1],j-1);j++;}found = 1;break;}j++;if(datas[j]==null) {JOptionPane.showMessageDialog(jf,"未找到!","警告",JOptionPane.WARNING_MESSAGE);break;}}DeleteText2();
//				        System.out.println("3");if(found == 1) {// 消息对话框无返回, 仅做通知作用JOptionPane.showMessageDialog(jf,"删除成功!","删除",JOptionPane.INFORMATION_MESSAGE);}}} catch (FileNotFoundException e1) {// TODO Auto-generated catch blocke1.printStackTrace();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}}//	删除操作   ->	指定行删除txt文件的内容,	但还有空行public void DeleteTextContent(String oldstr, int j) throws IOException{//原有的内容String srcStr = oldstr;          // 读  FileReader in = new FileReader("temp.txt");  BufferedReader bufIn = new BufferedReader(in);  // 内存流, 作为临时流  CharArrayWriter  tempStream = new CharArrayWriter();  // 替换  String line = null;  int i=0;while ( (line = bufIn.readLine()) != null) {  if(i==j) {// 替换每行中, 符合条件的字符串  line = line.replaceAll(srcStr, "");  }// 将该行写入内存  tempStream.write(line);  // 添加换行符  tempStream.append(System.getProperty("line.separator"));  i++;}  // 关闭 输入流  bufIn.close();  // 将内存中的流 写入 文件  FileWriter out = new FileWriter("temp.txt");  tempStream.writeTo(out);  out.close();  }public void DeleteText2() throws IOException{       // 读  FileReader in = new FileReader("temp.txt");  BufferedReader bufIn = new BufferedReader(in);  // 内存流, 作为临时流  CharArrayWriter  tempStream = new CharArrayWriter();  // 替换  String line = null;  while ( (line = bufIn.readLine()) != null) {  if(line.equals("")) {continue;}else{// 将该行写入内存  tempStream.write(line);  // 添加换行符  tempStream.append(System.getProperty("line.separator"));  }}  // 关闭 输入流  bufIn.close();  // 将内存中的流 写入 文件  FileWriter out = new FileWriter("temp.txt");  tempStream.writeTo(out);  out.close();  }});// 创建一个垂直盒子容器, 把上面 JPanel 串起来作为内容面板添加到窗口Box vBox = Box.createVerticalBox();vBox.add(jp0);vBox.add(jp1);vBox.add(jp2);vBox.add(jp3);vBox.add(jp4);vBox.add(jp5);// 设置窗口的内容面板jf.setContentPane(vBox);//  自动排版
//        jf.pack();/*** 设置窗口的相对位置。* 如果 comp 整个显示区域在屏幕内, 则将窗口放置到 comp 的中心;* 如果 comp 显示区域有部分不在屏幕内, 则将该窗口放置在最接近 comp 中心的一侧;* comp 为 null, 表示将窗口放置到屏幕中心。*/jf.setLocationRelativeTo(null);// 设置窗口是否可见jf.setVisible(true);}public static void main(String[] args) {new Test();}}

这篇关于JAVA_GUI之“职工信息管理系统”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

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 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定