随笔分类 -  java框架

摘要:0 本文demo下载地址 链接:https://pan.baidu.com/s/1qrOt6pg1LlirX4s3I44ATQ 提取码:a62x 1 下载地址 http://qunying2.jb51.net:81/201905/tools/mybatis_jb51.rar 2 引入MyBatis的 阅读全文
posted @ 2020-03-03 19:46 Scorpicat 阅读(197) 评论(0) 推荐(0)
摘要:SSM框架 SSM框架指的是:Spring、SpringMVC、MyBatis三个框架 MyBatis:数据访问层框架 Spring:loC,AOP SpringMVC:对Servlet封装 阅读全文
posted @ 2020-03-03 17:15 Scorpicat 阅读(216) 评论(0) 推荐(0)
摘要:开发模式不是设计模式。 MVC开发模式 M:Model 模型,实体类和业务和dao V:view 视图,jsp C:Controller 控制器,servlet。作用:视图和逻辑分离 MVC适应场景:大型项目开发 开发流程 1.设计数据库 2.实体类 3.持久层 4.业务逻辑层 5.控制器 6.视图 阅读全文
posted @ 2020-03-03 15:02 Scorpicat 阅读(114) 评论(0) 推荐(0)
摘要:项目名:没有要求,不起中文 包名 红色的为MyBaits推荐使用的包名 持久层:dao,persist,mapper 实体:model,entity,bean,javabean,pojo 业务逻辑层:service,biz 控制器:controller,servlet,action,web 过滤器: 阅读全文
posted @ 2020-03-03 14:56 Scorpicat 阅读(397) 评论(0) 推荐(0)
摘要:Maven依赖 <dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf</artifactId> <version>3.0.11.RELEASE</version> </dependency> 封装Util packag 阅读全文
posted @ 2020-02-26 16:00 Scorpicat 阅读(594) 评论(0) 推荐(0)