上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 返回响应信息工具类 在com.gychen.util里新建Constants和RestRespond Constants package com.gychen.util; /** * 常量类 */ public class Constants { public final static int OK 阅读全文
posted @ 2020-07-22 18:52 nuister 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 创建ssm项目工程 3.1 创建maven工程 1、打开IDEA->file->new->project 2、选择Maven,勾选Create from archetype, 选择org.apache.maven.archetypes:maven-archetype-webapp 3.2 使用自己安 阅读全文
posted @ 2020-07-22 16:03 nuister 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 整合mybatis 配置数据源文件jdbc.properties 在sources里新建jdbc.properties jdbc.driver=com.mysql.cj.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/library?serverTi 阅读全文
posted @ 2020-07-22 15:55 nuister 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 数据库表设计 1、图书分类表 drop table if exists class_info; /* */ /* Table: class_info */ /* */ create table class_info ( `id` int not null auto_increment, `name` 阅读全文
posted @ 2020-07-22 15:47 nuister 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 图书馆管理系统 需求 用户需求功能: 普通用户:查询图书、查看公告、查询个人信息、预约借书 还书 图书管理员:发布公告、上架新书、下架图书、处理图书借阅和异常还书(丢失、破损、延迟还书等) 系统管理员:管理用户、设置信息等 阅读全文
posted @ 2020-07-22 15:45 nuister 阅读(315) 评论(1) 推荐(0) 编辑
摘要: 问题描述: java代码在开始事务后,先做了一个查询,再insert,此时会报: java.sql.SQLException: could not retrieve transation read-only status server 解决过程: 查看mysql的事物隔离级别 SHOW VARIAB 阅读全文
posted @ 2020-07-11 16:51 nuister 阅读(166) 评论(0) 推荐(0) 编辑
摘要: mybatis开发流程 阅读全文
posted @ 2020-07-01 13:45 nuister 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 原因可能是需要更新一下maven远程仓库 update一下就OK了 阅读全文
posted @ 2020-06-30 20:20 nuister 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-06-30 13:40 nuister 阅读(175) 评论(0) 推荐(0) 编辑
摘要: Spring官网:https://spring.io/ Spring5框架下载:https://repo.spring.io/release/org/springframework/spring/ 下载5.2.6版本 阅读全文
posted @ 2020-06-13 21:35 nuister 阅读(265) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页