12 2020 档案

摘要:Spring Boot Spring Boot 是一个快速开发框架,可以迅速搭建出一套基于 Spring 框架体系的应用,是 Spring Cloud 的基础。 Spring Boot 开启了各种自动装配,从而简化代码的开发,不需要编写各种配置文件,只需要引入相关依赖就可以迅速搭建一个应用。 特点 阅读全文
posted @ 2020-12-19 10:37 WonderC 阅读(132) 评论(0) 推荐(0)
摘要:记录一下今晚的错误,tomcat日志中一直显示One or more Filters failed to start. Full details will be found in the appropriate container log file。 听网上说是web.xml出错,一直核对了多次并无 阅读全文
posted @ 2020-12-06 23:04 WonderC 阅读(3020) 评论(0) 推荐(1)
摘要:SSM框架整合 Spring + Spring MVC + MyBatis Spring MVC 负责实现 MVC 设计模式,MyBatis 负责数据持久层,Spring 负责管理 Spring MVC 和 MyBatis 相关对象的创建和依赖注入。 创建 Maven 工程,pom.xml <dep 阅读全文
posted @ 2020-12-06 12:25 WonderC 阅读(79) 评论(0) 推荐(0)
摘要:Spring MVC Spring MVC 是目前主流的实现 MVC 设计模式的企业级开发框架,Spring 框架的一个子模块,无需整合,开发起来更加便捷。 什么是 MVC 设计模式? 将应用程序分为 Controller、Model、View 三层,Controller 接收客户端请求,调用 Mo 阅读全文
posted @ 2020-12-02 23:39 WonderC 阅读(142) 评论(0) 推荐(0)