上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 101 下一页
摘要: 一、ServletContext Defines a set of methods that a servlet uses to communicate with its servlet container, for example, to get the MIME type of a file, 阅读全文
posted @ 2019-12-31 16:14 zzfx 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 既然,ServletContext是由Servlet容器初始化的,那spring的ContextLoaderListener又做了什么初始化呢? 1、servlet容器启动,为应用创建一个“全局上下文环境”:ServletContext 2、容器调用web.xml中配置的contextLoaderL 阅读全文
posted @ 2019-12-31 15:52 zzfx 阅读(330) 评论(0) 推荐(0) 编辑
摘要: In the Web MVC framework, each DispatcherServlet has its own WebApplicationContext, which inherits all the beans already defined in the rootWebApplica 阅读全文
posted @ 2019-12-31 14:56 zzfx 阅读(623) 评论(0) 推荐(0) 编辑
摘要: Tomcat即是一个HTTP服务器,也是一个servlet容器 https://blog.csdn.net/jiaomingliang/article/details/47393141 阅读全文
posted @ 2019-12-31 11:02 zzfx 阅读(146) 评论(0) 推荐(0) 编辑
摘要: viewandmodel中的数据最终序列化后写入response; 没有的话则不做处理mv != null; @RequestMapping("/login") public void login(User user, HttpServletResponse response){ response. 阅读全文
posted @ 2019-12-30 19:23 zzfx 阅读(1316) 评论(0) 推荐(0) 编辑
摘要: /** * Holder for both Model and View in the web MVC framework. * Note that these are entirely distinct. This class merely holds * both to make it poss 阅读全文
posted @ 2019-12-30 18:58 zzfx 阅读(149) 评论(0) 推荐(0) 编辑
摘要: When RESTful Web Service is developed using Spring MVC, the application is configured as given below. Among these, implementation is necessary for the 阅读全文
posted @ 2019-12-30 16:42 zzfx 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 集成、整合、联系、整合、 构建:以合适的联系和规则来组织元素形成系统和整体。 阅读全文
posted @ 2019-12-26 19:45 zzfx 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 架构思维—软件架构—系统架构—系统—大局观、系统观(结构与秩序)、还原论(分与合) 最高层次的规划,难以改变的决定 分解仅仅是加速开发和降低问题复杂度,如果分解后的内容无法集成在一起,那么分解就没有任何意义。分解+集成可以理解为架构最核心的思考方式和方法。 https://zhuanlan.zhih 阅读全文
posted @ 2019-12-26 18:15 zzfx 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 微核架构的本质是微核掌握了更多的上下文, 知道系统是由哪些要素怎么组成的。 知道怎么使用插件来(分步)完成整体的功能。 微核架构 = 整体上下文 + 配置组成 微核架构(microkernel architecture)又称为"插件架构"(plug-in architecture),指的是软件的内核 阅读全文
posted @ 2019-12-26 17:08 zzfx 阅读(771) 评论(0) 推荐(0) 编辑
摘要: @RequestMapping 和 @GetMapping @PostMapping 区别 @GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。 @PostMapping是一个组合注解,是@RequestMapping 阅读全文
posted @ 2019-12-26 16:43 zzfx 阅读(274) 评论(0) 推荐(0) 编辑
摘要: Conceptually, calling a method on a transactional proxy looks like this…​ Conceptually, calling a method on a transactional proxy looks like this…​ ht 阅读全文
posted @ 2019-12-25 18:12 zzfx 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 本篇来源于官方文档,但不仅仅是翻译,其中不乏网上搜索的资料与自己的理解。 如有错误,请予指正。 什么是Realm 首先说一下什么是Realm,可以把它理解成“域”,也可以理解成“组”,因为它类似 类Unix系统 中组的概念。 Realm域提供了一种用户密码与web应用的映射关系。 因为tomcat中 阅读全文
posted @ 2019-12-25 16:54 zzfx 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 要想很好理解这三个上下文的关系,需要先熟悉spring是怎样在web容器中启动起来的。spring的启动过程其实就是其IoC容器的启动过程,对于web程序,IoC容器启动过程即是建立上下文的过程。 spring的启动过程: 首先,对于一个web应用,其部署在web容器中,web容器提供其一个全局的上 阅读全文
posted @ 2019-12-25 11:04 zzfx 阅读(808) 评论(0) 推荐(0) 编辑
摘要: 从图中可以看出:ContextLoaderListener初始化的上下文加载的Bean是对于整个应用程序共享的,不管是使用什么表现层技术,一般如DAO层、Service层Bean;DispatcherServlet初始化的上下文加载的Bean是只对Spring Web MVC有效的Bean,如Con 阅读全文
posted @ 2019-12-24 17:36 zzfx 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 详解Tomcat 配置文件server.xml tomcat 目录结构 https://blog.csdn.net/jiaomingliang/article/details/47393141 Tomcat’s Architecture Tomcat’s architecture consists 阅读全文
posted @ 2019-12-23 18:58 zzfx 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 当一个tomcat需要配多个应用时,并且内网和外网的访问IP还不一样,就需要使用到tomcat配置多个虚拟主机。 <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="f 阅读全文
posted @ 2019-12-23 18:44 zzfx 阅读(2993) 评论(0) 推荐(0) 编辑
摘要: 3.3 Configure the Application Deployment Descriptor - "web.xml" A web user invokes a servlet, which is kept in the web server, by issuing a specific U 阅读全文
posted @ 2019-12-23 17:41 zzfx 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 1、一个tomcat可以配置多个host; 2、一个host可以包含多个应用:context; 3、一个应用可以包含多个servlet:servlet-path; 4、一个servlet可以包含多个request:request-path; Tomcat’s Architecture Tomcat’ 阅读全文
posted @ 2019-12-23 17:37 zzfx 阅读(901) 评论(0) 推荐(0) 编辑
摘要: spring = servlet + 一种新的编程范式(dsl or meta) 阅读全文
posted @ 2019-12-22 21:54 zzfx 阅读(150) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 101 下一页