摘要: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <titl 阅读全文
posted @ 2025-02-20 21:27 花落水无痕 阅读(15) 评论(0) 推荐(0)
摘要: <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>新增员工</title> <style> body { font-family: Arial, sans-serif; bac 阅读全文
posted @ 2025-02-20 21:15 花落水无痕 阅读(22) 评论(0) 推荐(0)
摘要: 继续对网页外观进行美化 <%-- Created by IntelliJ IDEA. User: Administrator Date: 2024/12/16 Time: 15:17 To change this template use File | Settings | File Templat 阅读全文
posted @ 2025-02-20 21:01 花落水无痕 阅读(20) 评论(0) 推荐(0)
摘要: 对页面进行外观设计与美化 <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>主菜单</title> <style> /* 页面背景 */ body { font-family: 阅读全文
posted @ 2025-02-20 20:31 花落水无痕 阅读(19) 评论(0) 推荐(0)
摘要: 完成部分servlet与jsp页面 package com.xxx.web; import com.xxx.pojo.Department; import com.xxx.pojo.Employee; import com.xxx.service.DepartmentService; import 阅读全文
posted @ 2025-02-20 19:41 花落水无痕 阅读(17) 评论(0) 推荐(0)
摘要: 完成部分功能页面的servlet与jsp <%-- Created by IntelliJ IDEA. User: Administrator Date: 2024/12/16 Time: 14:38 To change this template use File | Settings | Fil 阅读全文
posted @ 2025-02-20 19:36 花落水无痕 阅读(17) 评论(0) 推荐(0)
摘要: 定义实体类与接口,在接口中实现基本的增删改查 package com.xxx.pojo; public class Attendance { private String id; private String attendanceTime; private String jobId; private 阅读全文
posted @ 2025-02-20 19:28 花落水无痕 阅读(14) 评论(0) 推荐(0)
摘要: 首先在数据库中建立表单 drop table if EXISTS attendance; CREATE TABLE attendance ( ID INT AUTO_INCREMENT PRIMARY KEY, -- 序号,自动递增 Attendancetime DATETIME NOT NULL, 阅读全文
posted @ 2025-02-20 19:19 花落水无痕 阅读(20) 评论(0) 推荐(0)