上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 103 下一页
摘要: When running a Java program, verbose options can be used to tell the JVM which kind of information to see. JVM suports three verbose options out of th 阅读全文
posted @ 2020-01-03 11:39 zzfx 阅读(133) 评论(0) 推荐(0)
摘要: xml、json都是数据语言 阅读全文
posted @ 2020-01-02 16:18 zzfx 阅读(177) 评论(0) 推荐(0)
摘要: http://www.gogeometry.com/software/programming-paradigms-sw-mind-map.htm 阅读全文
posted @ 2020-01-01 16:25 zzfx 阅读(277) 评论(0) 推荐(0)
摘要: https://en.wikipedia.org/wiki/Aspect-oriented_programming Action Agent-oriented Array-oriented Automata-based Concurrent computing Relativistic progra 阅读全文
posted @ 2020-01-01 16:20 zzfx 阅读(225) 评论(0) 推荐(0)
摘要: https://www.researchgate.net/publication/274698290_Selected_Aspects_of_Functional_Programming_Fostering_Technical_Safety_within_PEARL2020 阅读全文
posted @ 2020-01-01 12:58 zzfx 阅读(162) 评论(0) 推荐(0)
摘要: war包代表一个应用 web.xml是tomcat和spring间的桥梁,是tomcat构建spring运行环境的说明书 It is a web application deployment descriptor file, contains detail description about web 阅读全文
posted @ 2019-12-31 17:47 zzfx 阅读(258) 评论(0) 推荐(0)
摘要: 一个Context对应一个web应用,而一个web应用应该有一个web.xml 观察StandardContext的startInternal方法 startInternal() -> fireLifecycleEvent(Lifecycle.CONFIGURE_START_EVENT, null) 阅读全文
posted @ 2019-12-31 17:23 zzfx 阅读(516) 评论(0) 推荐(0)
摘要: 一、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 阅读(517) 评论(0) 推荐(0)
摘要: 既然,ServletContext是由Servlet容器初始化的,那spring的ContextLoaderListener又做了什么初始化呢? 1、servlet容器启动,为应用创建一个“全局上下文环境”:ServletContext 2、容器调用web.xml中配置的contextLoaderL 阅读全文
posted @ 2019-12-31 15:52 zzfx 阅读(338) 评论(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 阅读(637) 评论(0) 推荐(0)
摘要: Tomcat即是一个HTTP服务器,也是一个servlet容器 https://blog.csdn.net/jiaomingliang/article/details/47393141 阅读全文
posted @ 2019-12-31 11:02 zzfx 阅读(154) 评论(0) 推荐(0)
摘要: viewandmodel中的数据最终序列化后写入response; 没有的话则不做处理mv != null; @RequestMapping("/login") public void login(User user, HttpServletResponse response){ response. 阅读全文
posted @ 2019-12-30 19:23 zzfx 阅读(1325) 评论(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 阅读(158) 评论(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 阅读(410) 评论(0) 推荐(0)
摘要: 集成、整合、联系、整合、 构建:以合适的联系和规则来组织元素形成系统和整体。 阅读全文
posted @ 2019-12-26 19:45 zzfx 阅读(154) 评论(0) 推荐(0)
摘要: 架构思维—软件架构—系统架构—系统—大局观、系统观(结构与秩序)、还原论(分与合) 最高层次的规划,难以改变的决定 分解仅仅是加速开发和降低问题复杂度,如果分解后的内容无法集成在一起,那么分解就没有任何意义。分解+集成可以理解为架构最核心的思考方式和方法。 https://zhuanlan.zhih 阅读全文
posted @ 2019-12-26 18:15 zzfx 阅读(429) 评论(0) 推荐(0)
摘要: 微核架构的本质是微核掌握了更多的上下文, 知道系统是由哪些要素怎么组成的。 知道怎么使用插件来(分步)完成整体的功能。 微核架构 = 整体上下文 + 配置组成 微核架构(microkernel architecture)又称为"插件架构"(plug-in architecture),指的是软件的内核 阅读全文
posted @ 2019-12-26 17:08 zzfx 阅读(799) 评论(0) 推荐(0)
摘要: @RequestMapping 和 @GetMapping @PostMapping 区别 @GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。 @PostMapping是一个组合注解,是@RequestMapping 阅读全文
posted @ 2019-12-26 16:43 zzfx 阅读(284) 评论(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 阅读(247) 评论(0) 推荐(0)
摘要: 本篇来源于官方文档,但不仅仅是翻译,其中不乏网上搜索的资料与自己的理解。 如有错误,请予指正。 什么是Realm 首先说一下什么是Realm,可以把它理解成“域”,也可以理解成“组”,因为它类似 类Unix系统 中组的概念。 Realm域提供了一种用户密码与web应用的映射关系。 因为tomcat中 阅读全文
posted @ 2019-12-25 16:54 zzfx 阅读(520) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 103 下一页