由买买提看人间百态

topics

全部话题 - 话题: framework
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
r*****3
发帖数: 143
1
来自主题: Programming版 - 《Entity Framework 4 实战》PDF]
中文名: Entity Framework 4 实战
原名: Entity Framework 4 in Action
作者: Stefano Mostarda
Marco De Sanctis
and Daniele Bochicchio
图书分类: 软件
资源格式: PDF
版本: 英文文字版/更新源代码
出版社: Manning
书号: 9781935182184
发行时间: 2011年
地区: 美国
语言: 英文
简介:
内容介绍:
Entity Framework 4 in Action is an example-rich tutorial that helps .NET
developers learn and master the subject. It begins by explaining object/
relational mapping and then shows how you can easily transition to EF from
ADO.NET. Through numerous focused examples and two large... 阅读全帖
s******e
发帖数: 493
2
Spring is an application framework. basically it provides either almost
everything you might need to develop an enterprise application or a hook to
other frameworks for you to integrate with. For any nontrivial enterprise
level app, it is probably a good choice considering it is feature rich and
extremely easy to extend. But DO NOT try to cut everything in it. Like any
framework, you pay overhead to gain RAD, which is not desired at certain
cases. For example, you do not need its rich features a... 阅读全帖
z*******3
发帖数: 13709
3
framework跟container最大的区别就是
container通过脚本可以自己启动,运行成一个服务
而framework只能通过其它程序来启动,不能自行启动
也就是自己无法单独跑成一个服务
framework跟library的区别在于
framework有一个主类,负担起管理beans的任务
尤其是beans的生命周期的管理,这个功能container也有
所以才有了spring vs ejb之争,说的就是spring framework和ejb container之间
你要选择一个来管理你的beans的生命周期,也就是普通的java对象,从new到gc
然后library不负责管理beans的生命周期,只负责提供方法
所以从完整性上说
container > framework > lib
举个例子,我们不说spring
拿web server来说
tomcat是一个web server,你可以直接把tomcat给启动,不需要加任何代码,就可以跑了
然后你可以在tomcat上添加servlet之类的beans,让tomcat帮忙管理这样
如果你对tomcat的servlet... 阅读全帖
F*******X
发帖数: 143
4
Framework 有特征 inversion of control, 就是这“inversion of control”让我感
觉莫名其妙的,如果我要用 Framework 在 Server 方面的,那这 Framework 和 API
里面的 Collection Framework 有什么差。
还有你说的“framework比function, library更大”,那“大”是怎么定义了?那我放
很多东西文件在library里面把她做很大,那我可以说“library 比 Framework 大”吗?
s******e
发帖数: 493
5
来自主题: Java版 - java为啥这么多framework
my $0.02.
In java community, most people like lightweight components. Almost all the
frameworks are targeting that. Also different people have the different
tastes, for example, some people like configuration based frameworks, some
like convention based frameworks. So each of these two groups of people try
to develop the frameworks basd on their own believes.
Frameworks really bring lots of benefits(such as reuseability, extensibility
, scaleability, etc) to many aspects of the software developm
b******y
发帖数: 9224
6
来自主题: Java版 - Click web framework is interesting
I know that framework. The guy started it using Velocity I think. It is just
another framework, trying to beat all other frameworks ;-)
But, it is not that wide-spread yet, I don't like to use anything that's not
production ready.
To be frank, for mission-critical stuff, I don't even want to use ANY
framework at all, would rather code our own framework, hehe
g*****g
发帖数: 34805
7
GWT is a pure client framework, it's fine at doing what it's doing.
But it may fall short when doing
1. When you need custom component
2. When integrate with traditional web design
Every framework has advantage and drawback, but there's no one fits all
approach. After evaluate many frameworks, I agree with this option.
Stripes is best action-based framework, Wicket is best component framework.
F*******X
发帖数: 143
8
哟,打工回来看到很多回帖,真惊喜,谢谢解读。我看了一遍大家的内容,我好像有概
念了,对某大侠用的“零件”来比喻有感觉,我就不一一回复了,既然聊开了,我也不
客气地再追问了。
那我就大胆地说说自己的看法了:既然如大家所说的, 那么 Framework 就和
Container 功能很像了,怎么说,就是 Apache (web server) 给 Tomcat (Container)
传 http 请求,那 Tomcat (Container) 就调用(Servlet之类的).....然后做了很多
东西再回归到 browser。 我想这 Servlet 的部分应该是要我自己写吧,但 Tomcat 我
去下载就可以用不用写,这部分可能就是所谓的 “inversion of control”,按各大
侠所说,就是我的 code (Servlet) 被调用了。如果我的看法没有错的话,Framework
和 Container 功能很像,很为什么要有 2 个名字 Framework 和 Container?那如果
不同的话,那 Framework 和 Container 的优劣在哪里了?
在看 C... 阅读全帖
W***o
发帖数: 6519
9
最近测试了几个 Java RESTful MVC 框架,粗略感想如下:
1. Spark framework: micro framework, 感觉这个有点像 python Flask framework,
简单易用,配合 ORMLite连DAO都不用自己写了,适合快速的开发;而且自带jetty, 开
发完以后可以直接用maven 包装成jar在服务器上运行,不用tomcat
2. Spring MVC: 感觉这个太 heavy, learning curve 比较陡,但是功能强大,对于一
般的中型或以下的网站有点杀鸡用牛刀了。
3. Play framework: 这个简单易用,比较intuitive,而且有各种web app template,
有专门的 app generator;但是不喜欢的是掺杂了scala的一些破烂东西,使java 不再
纯洁,我不太喜欢在模板里写scala的代码,因为我对scala 不感冒
4. 最后说说Ninja framework, 这个好像源自 Play 1.x 版本,但是 Java代码很纯100
%,有 Dependency Injection,... 阅读全帖
b******y
发帖数: 9224
10
From redhat:
"Java EE 6 standards and technologies, such as JSR 299 - Contexts &
Dependency Injection (CDI), significantly reduce the complexity of earlier
versions of J2EE. Now, using Java EE can be even simpler than using
proprietary legacy frameworks such as Spring Framework, and take much less
time. "
感慨一下,当初spring framework可以号称新潮流啊.城头变幻大王旗
P*****s
发帖数: 166
11
最近试装Visual Studio 2010,先自行安装了一堆东西,轮到VS2010时显示安装失败,
用.net framework verifier查了,结果.Net Framework 4.0 verification failed.
我的系统Win7 (x64) Ultimate,而Framework 3.5 SP1查了没问题。
我以为是光盘带的framework 4有问题,结果去MS他家下载,无论是web installer还是
standalone的版本,都是一样的结果。以下是error log
[07/16/10,15:40:39] Beginning of new SetupVerifier error logging session
[07/16/10,15:40:39] Activity log file location: (此处删除)
[07/16/10,15:40:39] Error log file location: (此处删除)
[07/16/10,15:40:39] Build created on July 2, 2010
[07/16/10,15:4
w*****s
发帖数: 122
12
9月23日
Harbinger宣布支持微软的BizTalk Framework在电子商务的应用.
Harbinger公司是一家跨过电子商务软件,服务商.它今天宣布,它将与微软合作,支持
BizTalk Framework.同时,他还宣布将与微软共同建立标准,把XML schema运用到在线目录
管理系统中去.
它们合作主要在于四个方面:
1. 将BizTalk Framework加入到Harbinger新产品中去.
2. 和微软共同制作在线目录管理系统的标准.
3. Harbinger将使它的harbinger.net(SM)电子商务接口可以交换BizTalk兼容的XML文件.这
使得它的网络用户可以方便的接收到XML文件.
4. Harbinger打算通过支持BizTalk Framework来支持它的TrustedLink(TM).这使得Harbinger
的40,000用户可以享受在线的BizTalk兼容的XML文件的翻译.
z****e
发帖数: 54598
13
ft
android本身就是一个framework
写个app还要上framework,这个就夸张了
以前google搞过一个guice的android版
用来搞ioc,纯粹吃饱了没事做,没有人用
我能想到要用framework的地方可能就是垮平台吧
如果你打算这样搞的话,看看libgdx或者robovm
这两个是一个东西,前者用了后者作为ios编译的工具
不过现在swift出来后,在ios上开发难度比android还低
你不用都没啥问题
j*******l
发帖数: 1066
14
Spring Framework很大 现在用的最多的component就是楼上说的DI
如果是新代码 建议采用jsr-330 Java config (1)
如果是老代码 也可以适当掌握spring xml bean的写法(2) 大概能理解能维护就行了
1. http://docs.spring.io/spring/docs/current/spring-framework-reference/html/beans.html#beans-standard-annotations
2. http://docs.spring.io/spring/docs/current/spring-framework-reference/html/beans.html#beans-definition
x****n
发帖数: 29
15
【 以下文字转载自 Java 讨论区 】
发信人: xychen (xychen), 信区: Java
标 题: 想转Java开发,学什么framework最好找工作?
关键字: java,framework
发信站: BBS 未名空间站 (Tue May 9 10:10:07 2017, 美东)
看了Core Java和Effective Java
用Java刷过题
有少量Java项目开发经历
想转Java开发,学什么framework最好找工作?Spring, Hibernate, etc? 谢谢。
s***o
发帖数: 2191
16
来自主题: DotNet版 - Entity Framework Today?
While M$ advocates how good its Entiry Framework is, most of the comments I
read from non-M$ people are negative. I didn't pay much attention to this
Framework during the last few months though. Are there any significant
improvments? or at least some promises coming up? Now I get some free time,
is it a good idea to pick up this entiry framework thing, or should I learn
something else instead of wasting time on it?
Any advice? Thanks in advance.
s***o
发帖数: 2191
17
来自主题: DotNet版 - Entity Framework Today?
just tried Entity Framework to build some simple report page, and its
performance is "shocking". With "raw" ADO.NET, the page loads in seconds;
and with Entity Framework approach, it takes more than 1 minutes...
Maybe and hopefully I am using Entity Framework in an "incorrect" way.
a***c
发帖数: 960
18
确切地说是Presentation FontCache.exe,在Service里面有FontCache3.0.0.0
我当时是找到这个进程的母文件夹是NET Framework,所以记成是NET Framework。
查了一下,这个是Microsoft .NET Framework的相关程序,用于通过缓存常用的字体数据来优化Windows 演示基础(WPF)应用程序性能。通过缓存常用的字体数据来优化 Windows 演示基础(WPF)应用程序的性能。
比如我开power manager的时候这个进程就会打开,问题是用完了不会自己结束。每次要手动结束也太麻烦了。如果禁用会影响那些软件或者程序?

libraries
thing.
t*******e
发帖数: 684
19
我指declarative programming,不是XML configuration。Object inheritance,
polymorphism使用在domain model上很好,business code可能还是越简单,越少
hierarchy才容易维护。EJB3和Spring都是这个宗旨,non-intrusive container,所以
EJB3和SpringBean都是POJO,理论上portability也好。不喜欢用XML的,可以用
annotations. Web framework是否是POJO可能不如business layer或DAO中那么重要。
本身web framework没有一个是perfect的,具体怎么用还是由requirement和developer
的knowledge base决定的。争论webframework在theserverside.com每次都是non-conclusive
discussions. 新的frameworks都不错,选择很大程度就是个个人喜好。
g*****g
发帖数: 34805
20
Personally, I think Wicket is the best framework to date.
It's a component framework, not MVC framework though.
p*****2
发帖数: 21240
21

吗?
Framework 有特征 inversion of control
这个我也不太明白。是说Java的framework有这个特点吗?
library一般是一个文件吗?framework就很多library了。
o***i
发帖数: 603
22
字面上理解就行了呀
framework就是框架,就是各个主要的零部件/支柱都已经给你建好了,你在其上加一些
细节零部件就可以工作了
library的话,就是零件库,你把零件拿过来,你还是需要组装,连接才能工作的
framework有“宏观”的,比如spring,有“微观”,如你说的Collection Framework,
后者在微观层面上已经给你建好了一个框架
这是我的一点理解

吗?
w****6
发帖数: 796
23
GoF design patterns 中对library和framework是这么说的:
library: your function calls library
framework: framework calls your function. It's so called
"hollywood style" -- don't call us, we'll call you. Thus
inverted control.
n***u
发帖数: 49
24
来自主题: Programming版 - perl non web framework
谁能推荐一个 perl framework, search 了一下 好像有个 Catalyst web framework,
有不是 web的framework,
只想在后台run, grab and analyze some web content.
Thanks!
g*****g
发帖数: 34805
25
来自主题: Programming版 - perl non web framework
Then why do you need a framework? Framework is to modularize
a complex problem.

framework,
S*******e
发帖数: 525
26
来自主题: Programming版 - java script哪个framework比较好用?
Infoq 正在做了一个调查http://www.infoq.com/research/top-javascript-mvc-frameworks。 好像AngularJS在参与调查的人中最受欢迎。 AngularJS对IE 好像支持不是很好 (对我们公司内部来说, IE8/IE7 还是标准)。Backbone 在该调查中是第二, 不知它对IE的支持如何.熟悉的请说说。现在framework 太多, 不好决定。
要接手的项目原来用了不少DOJO, 我不熟悉, 看了一点也不喜欢。很熟悉JQuery, 项
目中似乎也用了一些。现在觉得很需要一个MVC framework。
h******b
发帖数: 6055
27
来自主题: Programming版 - 板上大牛都用哪些mobile framework?
最近一年零零碎碎试验了几个。 本人并非编程出身,有网站和前台设计背景,希望找
个糙快猛的手法,最少达到产品经理独立完成prototype的能力。用过这几个的说说经
验吧。
corona sdk - lua 语言很容易上手,图像性能很好,写了一个简单三消的prototype,
意识到自己美工太烂,放弃了。 试图拿来写business app但感觉他们缺太多零件了。
而且价格越来越高。 放弃了。
titanium - javascript 不错,但他们的iOS和Android几乎是两套代码。 几乎每个
function都不同behavior。 他们追求的是native look and feel。 如果这样我不如
native开发了。
phonegap - 因为是HTML/css,感觉非常顺手,一个文档放在xampp里面直接拿来当网页
来preview非常流畅。 据说性能是问题。 不过jquery mobile真心是适合电脑的,不
是手机的,整体感觉还是臃肿了一点。
ionic framework - 最近很火的framework。 如果你谷歌mobile framewo... 阅读全帖
l**********n
发帖数: 8443
28
来自主题: Programming版 - spring mobile framework
Best course of action
1. Separate client and server side code
2. Choose some client side mobile JavaScript framework.
3. Use Spring as RESTful web service, or any other RESTful framework like
Play Framework.
4. Wrap your client side code into Phonegap(Cordova)
a***n
发帖数: 623
29
来自主题: Programming版 - Django这个framework怎样?
新手学学django也挺好的,文档很齐全。
个人认为学习web framework来说不需要太看重这个framework现在火不火,先学着搞出
来个东西试试!很多东西是一通百通的,学会一个framework再看看其他的,也就那么
回事。
c*********e
发帖数: 16335
30
【 以下文字转载自 DotNet 讨论区 】
发信人: convergence (Rex), 信区: DotNet
标 题: c# project 防止hacker攻击,大家是用什么framework?
发信站: BBS 未名空间站 (Sat Jul 11 18:35:05 2015, 美东)
如果什么framework(比如telerik, sencha)都不用,只用ado.net之类的ms自己提供的
framework,能防止hacker 攻击吗? 比如xss, csrf.
w*s
发帖数: 7227
31
来自主题: Programming版 - 请推荐perl web framework
from others
You have fallen foul of the primarily opinion-based off-topic categorisation
, and your question will probably be closed very soon. However I think it's
worth offering a few guidelines here
First of all you should absorb what is written in CGI::Alternatives as it is
a reasonable summary of the subject
Next you should separate the HTML generation functionality of your existing
CGI code from the interface itself, and consider replacements for each of
them separately. If you were to use... 阅读全帖
T*******x
发帖数: 8565
32
来自主题: Programming版 - Framework vs Library
用library主要的程序流程控制在你。
用framework主要的程序流程控制在framework。
很多framework你用了之后,你自己的写程序中没有entry point。

are
x****n
发帖数: 29
33
【 以下文字转载自 Java 讨论区 】
发信人: xychen (xychen), 信区: Java
标 题: 想转Java开发,学什么framework最好找工作?
关键字: java,framework
发信站: BBS 未名空间站 (Tue May 9 10:10:07 2017, 美东)
看了Core Java和Effective Java
用Java刷过题
有少量Java项目开发经历
想转Java开发,学什么framework最好找工作?Spring, Hibernate, etc? 谢谢。
b****r
发帖数: 2555
34
☆─────────────────────────────────────☆
guvest (我爱你老婆Anna) 于 (Sun Nov 20 00:07:51 2011, 美东) 提到:
现在非历史专业的人,一般常说的所谓民主自由.
其实指的是欧州开始的自由主义,最主要的两点我认为是扩大平民参政的
渠道(在西方是选举权,在列宁是解放农奴等等)和社会福利体系.
欧州美国在19世纪实现这套系统.二战之后,自由主义/去殖民化
是美国和苏联共同主导的.从这个维度看,美国和苏联对社会问题的解决方法,
本质上其实区别并不大.美苏勾结的历史,可以上溯到列宁和威尔逊时代.
冷战其实可以解释成一个给与更多人参政的可能,给与更多人社会福利的历史计划.
这中间有美苏竞争,但目标在这个角度看,是一致的.
但是,有没有可能全球实现多数人有投票权和社会福利体系?
我看风险非常大.在19世纪当时,欧州有第三世界国家垫背,日本有大清帝国垫背.
现在没有那么多资源,可以前进的选择会少很多.起伏波动会非常大.
回到中国来说,现在人人最不满的恐怕就是两点
(1)参政权被少部分人垄断 (2)社会福利跟不上[不仅... 阅读全帖
s****l
发帖数: 10462
35
来自主题: JobHunting版 - 需要招一个DB + web framework/API 的人
http://www.mitbbs.com/article_t0/JobHunting/32815925.html
这是以前的帖子
要求改动了,对生物的背景要求可以不要,但是希望能从后台到前台都有经验,尤其是
后台。从差不多million entries的DB到framework,API之类的architecture的东西比
较牛,因为你要建起这个平台,然后供其他人用。
差不多full stack吧,主要是DB/modeling + web framework + API,前台的相对次要些
需要有实际的业界工作经验,学生就免了。
for more info, 请站内我你的email and brief description of your relevant
experience
公司在南加
s**********e
发帖数: 130
36
如果现阶段去做开发deep learning的framework和SDK的工作,对以后转去做deep
learning本身会有帮助吗?
做framework和SDK的开发会增加deep learning的domain knowledge吗?
谢谢!
o****e
发帖数: 916
37
来自主题: SanFrancisco版 - 建网页求推荐framework (转载)
【 以下文字转载自 Programming 讨论区 】
发信人: okeoke (okeoke), 信区: Programming
标 题: 建网页求推荐framework
发信站: BBS 未名空间站 (Fri Aug 1 00:31:43 2014, 美东)
要弄几个简单的网页,有点像waterfall,或者stack bar chart,做data
visualization。求高手推荐合适流行的库或者framework,linux server,最好能在
google app engine上跑。谢谢!
b***n
发帖数: 13455
38
Texas turns down Pac-10; Big 12 schools have framework of deal
05:41 PM CDT on Monday, June 14, 2010
By CHUCK CARLTON / The Dallas Morning News
The remaining Big 12 members are close to a remarkable comeback that will
ensure the conference's viability of 10 members a source familiar with the
negotiations told The Dallas Morning News.
Several small details need to be ironed out, but the framework of an
agreement appeared to be in place Monday afternoon.
Pac-10 Commissioner Larry Scott confirmed t
D*J
发帖数: 141
39
这个问题太广泛了。况且 zend, symfony and rail, java are not on the same
level. you can compare PHP, Java, and Rail. Or you should compare symfony,
zend, drupal and/or others.
There is no simple answer. The basic principle: use more loose framework for
the more customized and specific site/service; use more specific framework
for common type website that do not need much customization. It's a question
of flexibility vs. convenience.
Just my thoughts.

to
g***t
发帖数: 2278
40
来自主题: BuildingWeb版 - 用Javascript Framework的请进 (转载)
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: grant (骑鹤下扬州), 信区: SanFrancisco
标 题: 用Javascript Framework的请进
发信站: BBS 未名空间站 (Wed Nov 18 13:19:32 2009, 美东)
请问如果要作图,就是那种interactive chart,如果还考虑容易兼容IE和Firefox的话,
Dojo, JQUERY, Prototype, YUI哪个更好用?
还是一个更好用的Framework?
谢谢!
h******e
发帖数: 468
41
作computer vision/pattern recognition的研究有时会用 Probabilistic framework,
例如 Bayesian framework, MCMC。
请问大家都怎么实现, 网上有没有可下载的code?
请大家指点, 谢谢!!!
d*****r
发帖数: 39446
42
【此篇文章是由自动发信系统所张贴】
⊙ 投票开启于:Thu Jan 11 20:38:59 2007 类别:复选
⊙ 主题:你在用什么版本的.NET Framework?
⊙ 票选题目描述:
你在用什么版本的.NET Framework?
【选项如下】
(1) 1.1
(2) 2.0
(3) 3.0
w**b
发帖数: 19
43
.net framework library的source code在visual studio 2008 Express Edition里
debugging时能看到吗?我刚才试了一下看不见,根本无法跟踪进去。是不是有什么东
西要设置?但是Express Edition 无法按这个链接的方法设置:http://weblogs.asp.net/scottgu/archive/2007/10/03/releasing-the-source-code-for-the-net-framework-libraries.aspx
哪位大虾知道是怎么回事?先谢谢了。
n******0
发帖数: 298
44
In the visual studio's project file, there is an attribute 'ToolsVersion'
for the 'project' element. I set it as '4.0'. In the project's properties
window, I set the 'Target Framework' as '3.5'. When I try to build the
project, I found it built with framework 3.5. Then what does the
ToolsVersion attribute do?? Thanks!
c**d
发帖数: 579
45
Toolversion is Visual Studio version. Target Framework is the targeted .NET
framework version.
c*********e
发帖数: 16335
46
如果什么framework(比如telerik, sencha)都不用,只用ado.net之类的ms自己提供的
framework,能防止hacker 攻击吗? 比如xss, csrf.
c*****t
发帖数: 1879
47
来自主题: Java版 - java为啥这么多framework
I think that JavaDoc and Jar utilities and Java portabilities are the
main reasons for the flourishing of frameworks. Otherwise, the
documentation
itself would kill the urge of distributing a framework, not to mention
the portability issues. (C++ code, for example, is highly non-portable).
g*****g
发帖数: 34805
48
来自主题: Java版 - Web framework comparison
https://equinox.dev.java.net/framework-comparison/WebFrameworks.pdf
This is a pretty good article comparing frameworks.
Personally, I only used struts and spring MVC before.
And it's safe to say spring MVC is superior in almost every aspect.
Struts is dying, Tapesty doesn't seem to have big commmunity.
For model 2 programming, Spring MVC seems to be the winner,
especially with Spring being more and more popular in business
layer.
JSF is the standard right now. Its model facilitates WYSIWYG devel
h*********o
发帖数: 62
49
This thread reminds me another classic debate: store procedure or not.
convention based framework vs configuration based framework is just like
that. I guess 10 years later, there will still be somebodies debating on it
.
b******y
发帖数: 9224
50
来自主题: Java版 - 讨论一下web framework吧
太多的framework, 太少的时间熟悉这些framework...
我比较欣赏的是Velocity template engine, simple, efficient.
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)