1. 程式人生 > 其它 >基於Java的考勤管理雙系統

基於Java的考勤管理雙系統

基於Java的考勤管理雙系統



開發環境:

  • JDK 1.8

  • Maven latest

  • Spring Boot 2.4.5

  • Intellij IDEA/Eclipse

  • mysql 5.7

  • git 版本管理

  • layui 前端元件




後端


安裝部署:

  • 本地登陸地址:localhost:8099/web/jsp/login.jsp

  • 拉取專案不要修改專案名稱和注意存放路徑,否則會發生報錯情況

  • 執行資料庫檔案(每次資料庫檔案都放在總檔案裡面了)

  • 獲取程式碼後,通過IDE匯入此Maven工程

  • 需要修改SpringBoot配置檔案application.yml資料庫配置,修改成你的資料庫地址和訪問使用者

系統配置;

server:
port: 8099
spring:
mvc:
view:
prefix: /web/jsp/
suffix: .jsp
datasource:
username: root
password: root
url:jdbc:mysql://localhost:3308/db2021?serverTimezone=Asia/Shanghai
driver-class-name: com.mysql.cj.jdbc.Driver
mybatis:
config-location: classpath:mybatis/SqlSessionConfig.xml
mapper-locations: classpath:mybatis/mapper/*.xml
logging:
 level:
com.itheima: debug
pagehelper:
offsetAsPageNum: true
rowBoundsWithCount: true
reasonable: true
returnPageInfo: true
params: count=countSql

考勤模組核心主要通過id欄位查詢,增加,刪除等考勤資訊,較易理解,如下;


前端



登入首頁;

員工管理;

考勤管理;

系統使用者管理;

小結


總體基於SpringBoot-Layui開發的學生版企業考勤管理系統完整程式碼; 可供練習和畢業設計學習參考.分別為員工打卡系統(測試版)和企業考勤管理兩個系統。其中企業考勤管理系統主要功能包括: 員工資訊管理、考勤資訊管理、考勤統計、操作日誌資訊、登入日誌資訊、系統使用者管理等功能。