三层架构(3-tier architecture) 通常意义上的三层架构就是将整个业务应用划分为:界面层(User Interface layer)、业务逻辑层(Business Logic Layer)、数据访问层(Data access layer)。区分层次的目的即为了“高内聚低耦合”的思想。 ...
分类:
其他好文 时间:
2019-09-07 13:15:33
阅读次数:
250
本章将带你通过一个Struts2应用程序所需的基本配置。在这里,我们将看到在一些重要的配置文件,将配置文件:web.xml ,struts.xml,struts-config.xml和struts.properties 使用web.xml和struts.xml的配置文件,并在前面的章节中,已经看到我 ...
分类:
其他好文 时间:
2019-08-31 10:28:49
阅读次数:
91
容器: 容器是一种服务调用规范框架,J2EE大量运用了容器和组件技术来构建分层的企业级应用。在J2EE规范中,相应的有WEB Container和EJB Container等。容器提供系统级的服务调用。 WEB容器: 给处于其中的应用程序组件(JSP,SERVLET)提供一个环境,使JSP、SERV ...
分类:
Web程序 时间:
2019-08-29 11:07:22
阅读次数:
154
General terms Analytics as a Service (AaaS) The provision of analytics through Web-delivered technologies. These solutions offer businesses an alterna ...
分类:
其他好文 时间:
2019-08-21 00:26:08
阅读次数:
95
原文: http://blog.gqylpy.com/gqy/321 " " 原文: http://blog.gqylpy.com/gqy/321 ...
分类:
编程语言 时间:
2019-08-18 16:04:23
阅读次数:
98
"link" 简要题意: 给一颗$n$个点的二叉树, ,每个点有$a[i]$个果实,有$m$次操作,每次在$u\to v$(保证$u$是$v$的祖先)中取不超过$c$个果实,每取一个贡献$w$的收益 首先可以暴力建边然后费用流。考虑优化,有一种显然的贪心策略:按照$w$从大到小依次尽量选最多,判断可 ...
分类:
移动开发 时间:
2019-08-16 22:51:54
阅读次数:
229
School of Electrical Engineering and ComputingINFO6002: Database Management 2Trimester 2, 2019 - CallaghanAssignment 3 – Data Marts and Business Intel ...
分类:
数据库 时间:
2019-08-11 21:09:13
阅读次数:
99
When HP announced July 28 that it was acquiring ActiveState's PaaS business, senior vice president Bill Hilf said it was doing so in part to bridge th ...
分类:
其他好文 时间:
2019-08-07 14:44:10
阅读次数:
139
许多文章都在强调不要过度设计自己的系统,但是没有道出个所以然来,所以本文列出一些经典的过度设计,希望能给你带来启发,在工程上做一些平衡,避免过度设计把我们推到另外一个复杂度上 1、Engineering is more clever than Business 工程师通常认为自己是最聪明的,这第一个 ...
分类:
其他好文 时间:
2019-08-06 01:10:13
阅读次数:
181
asset 资产 server 服务器 network 网络设备 from django.db import models class UserProfile(models.Model): """ 用户信息 """ name = models.CharField(u'姓名', max_length= ...
分类:
数据库 时间:
2019-08-04 10:37:15
阅读次数:
255