摘要: 三级模式+两级映像 三级模式 分为外模式(视图)+模式(概念模式)+内模式(存储文件.db) 两级映像 数据库系统在三级模式之间提供了两级映像:模式/内模式映像、外模式/模式映像。 (1)外模式/模式映像。这两级映像保证了数据库的逻辑独立性。 (2)模式/内模式映像。这两级映像保证了数据库的物理独立 阅读全文
posted @ 2025-04-09 21:58 浦西和迪克的爱情故事 阅读(40) 评论(0) 推荐(0)
摘要: import java.util.ArrayList; import java.util.List; public class pageUtil { /** * select * from table limit(startIndex,pageSize) * pageIndex;//当前页码 * p 阅读全文
posted @ 2022-04-13 15:22 浦西和迪克的爱情故事 阅读(185) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <m 阅读全文
posted @ 2022-04-12 14:43 浦西和迪克的爱情故事 阅读(225) 评论(0) 推荐(0)
摘要: jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:端口号/数据库名?useSSL=true&amp;useUnicode=true&amp;characterEncoding=UTF-8&amp;serverTimez 阅读全文
posted @ 2022-04-12 11:19 浦西和迪克的爱情故事 阅读(122) 评论(0) 推荐(0)
摘要: 无法读取properties 且其他配置正确 没有打包到target文件夹中 pom.xml中配置 <resource> <directory>src/main/resources</directory> <includes> <include>*.properties</include> </in 阅读全文
posted @ 2022-04-12 11:15 浦西和迪克的爱情故事 阅读(239) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2022-04-12 11:11 浦西和迪克的爱情故事 阅读(279) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2022-04-12 11:01 浦西和迪克的爱情故事 阅读(190) 评论(0) 推荐(0)
摘要: <!--1.注册DispatcherServlet--> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servle 阅读全文
posted @ 2022-04-12 10:59 浦西和迪克的爱情故事 阅读(60) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dt 阅读全文
posted @ 2022-04-12 10:42 浦西和迪克的爱情故事 阅读(85) 评论(0) 推荐(0)
摘要: 【ERROR】 Type interface com.kg.dao.bookMapper is not known to the MapperRegistry. mapper未注册?? 【总结】没有扫描XML 或者namespace写错了 【ERROR】Exception in thread "ma 阅读全文
posted @ 2022-04-07 22:37 浦西和迪克的爱情故事 阅读(395) 评论(0) 推荐(0)