摘要: <dependencies> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.4</version> </dependency> <dependency> <group 阅读全文
posted @ 2020-06-07 11:14 阿布都日 阅读(923) 评论(0) 推荐(0)
摘要: Object Relational Mapping 对象关系映射 简单地说: 就是把数据库中的表和实体类及实体类属性对应起来 让我们可以操作实体类就实现数据库操作 User类 user表 id属性 id字段 name属性 userName字段 阅读全文
posted @ 2020-06-07 10:55 阿布都日 阅读(152) 评论(0) 推荐(0)
摘要: xxxxxxxxxx public static void main(String[] args) { Connection connection = null; PreparedStatement preparedStatement = null; ResultSet resultSet=null 阅读全文
posted @ 2020-06-07 10:46 阿布都日 阅读(121) 评论(0) 推荐(0)
摘要: 表现层:展示数据 业务层:处理业务需求 持久层:交互数据库 阅读全文
posted @ 2020-06-07 10:26 阿布都日 阅读(120) 评论(0) 推荐(0)