久久精品在这里_成人99免费视频_国产激情视频一区二区在线观看_国产伦精品一区二区三区免费 _亚洲午夜免费福利视频_色狠狠色狠狠综合_av在线综合网_91毛片在线观看_欧美视频一区二区在线观看_极品美女销魂一区二区三区免费_国产亚洲欧美激情_在线免费观看不卡av_日韩不卡一区二区三区_91精品国产麻豆国产自产在线_亚洲国产精品一区二区久久恐怖片_a4yy欧美一区二区三区

以文本方式查看主題

-  曙海教育集團論壇  (http://www.rfoamep.cn/bbs/index.asp)
--  Microsoft.NET Framework  (http://www.rfoamep.cn/bbs/list.asp?boardid=78)
----  Microsoft .NET vs. J2EE:  (http://www.rfoamep.cn/bbs/dispbbs.asp?boardid=78&id=2643)

--  作者:wangxinxin
--  發布時間:2010-12-15 11:13:20
--  Microsoft .NET vs. J2EE:

What exactly is the .NET platform [and] how does the .NET architecture measure up against J2EE?

Java runs on any platform with a Java VM. C# only runs in Windows for the foreseeable future.

.NET and J2EE offer pretty much the same laundry list of features, albeit in different ways.

By allowing cross-language component interactions, .NET is enfranchising Perl, Eiffel, Cobol, and other programmers.

.NET is a good thing for those of you committed to Microsoft architectures.

.NET will undoubtedly become the default development environment for Microsoft platforms.

However, several of the goals of the .NET platform are fairly lofty and not at all guaranteed to fly, at least not in the short term.

It would be easy to dismiss .NET as more Microsoft marketing-ware and continue on your merry way. But don\'t.

[Microsoft is] fighting Java and open source initiatives on their own terms, putting their own spin on "open" and attempting to directly address the needs of developers.

If you consider yourself an evangelist for Java or open source platforms, then the nature of the war is changing. Be prepared.

Microsoft has put a stake in the ground with SOAP, and they\'re pushing hard to put something understandable and useful in the hands of developers. J2EE proponents need to do the same with their platform.

Even if you don\'t write code dedicated to Microsoft platforms, you have probably heard by now about Microsoft .NET, Microsoft\'s latest volley in their campaign against all things non-Windows. If you\'ve read the media spin from Microsoft, or browsed through the scant technical material available on the MSDN site, or even if you attended the Microsoft Professional Developers\' Conference (where the .NET platform was officially "launched"), you\'re probably still left with at least two big questions:

  • What exactly is the .NET platform?
  • How does the .NET architecture measure up against J2EE?

And, if you think more long-term, you might have a third question rattling around your head:

  • What can we learn from the .NET architecture about pushing the envelope of enterprise software development?

The .NET framework is at a very early stage in its lifecycle, and deep details are still being eked out by the Microsoft .NET team. But we can, nevertheless, get fairly decent answers to these questions from the information that\'s already out there.

What is it?

Current ruminations about .NET in various forums are reminiscent of the fable of the three blind men attempting to identify an elephant: It\'s perceived as very different things, depending on your perspective. Some see .NET as Microsoft\'s next-generation Visual Studio development environment. Some see it as yet another new programming language (C#). Some see it as a new data-exchange and messaging framework, based on XML and SOAP. In reality, .NET wants to be all of these things, and a bit more.

First, let\'s get some concrete details. Here\'s one cut at an itemized list of the technical components making up the .NET platform:

  • C#, a "new" language for writing classes and components, that integrates elements of C, C++, and Java, and adds additional features, like metadata tags, related to component development.

  • A "common language runtime", which runs bytecodes in an Internal Language (IL) format. Code and objects written in one language can, ostensibly, be compiled into the IL runtime, once an IL compiler is developed for the language.

  • A set of base components, accessible from the common language runtime, that provide various functions (networking, containers, etc.).

  • ASP+, a new version of ASP that supports compilation of ASPs into the common language runtime (and therefore writing ASP scripts using any language with an IL binding).

  • Win Forms and Web Forms, new UI component frameworks accessible from Visual Studio.

  • ADO+, a new generation of ADO data access components that use XML and SOAP for data interchange.

How do .NET and J2EE compare?

As you can see, the .NET platform has an array of technologies under its umbrella. Microsoft is ostensibly presenting these as alternatives to other existing platforms, like J2EE and CORBA, in order to attract developers to the Windows platform. But how do the comparisons play out item-by-item? One way to lay out the alternatives between .NET and J2EE is shown in the following table:

Microsoft.NET J2EE Key differentiators
C# programming language Java programming language C# and Java both derive from C and C++. Most significant features (e.g., garbage collection, hierarchical namespaces) are present in both. C# borrows some of the component concepts from JavaBeans (properties/attributes, events, etc.), adds some of its own (like metadata tags), but incorporates these features into the syntax differently.

Java runs on any platform with a Java VM. C# only runs in Windows for the foreseeable future.

C# is implicitly tied into the IL common language runtime (see below), and is run as just-in-time (JIT) compiled bytecodes or compiled entirely into native code. Java code runs as Java Virtual Machine (VT) bytecodes that are either interpreted in the VM or JIT compiled, or can be compiled entirely into native code.

.NET common components (aka the ".NET Framework SDK") Java core API High-level .NET components will include support for distributed access using XML and SOAP (see ADO+ below).
Active Server Pages+ (ASP+) Java ServerPages (JSP) ASP+ will use Visual Basic, C#, and possibly other languages for code snippets. All get compiled into native code through the common language runtime (as opposed to being interpreted each time, like ASPs). JSPs use Java code (snippets, or JavaBean references), compiled into Java bytecodes (either on-demand or batch-compiled, depending on the JSP implementation).
IL Common Language Runtime Java Virtual Machine and CORBA IDL and ORB .NET common language runtime allows code in multiple languages to use a shared set of components, on Windows. Underlies nearly all of .NET framework (common components, ASP+, etc.).

Java\'s Virtual Machine spec allows Java bytecodes to run on any platform with a compliant JVM.

CORBA allows code in multiple languages to use a shared set of objects, on any platform with an ORB available. Not nearly as tightly integrated into J2EE framework.

Win Forms and Web Forms Java Swing Similar web components (e.g., based on JSP) not available in Java standard platform, some proprietary components available through Java IDEs, etc.

Win Forms and Web Forms RAD development supported through the MS Visual Studio IDE - no other IDE support announced at this writing. Swing support available in many Java IDEs and tools.

ADO+ and SOAP-based Web Services JDBC, EJB, JMS and Java XML Libraries (XML4J, JAXP) ADO+ is built on the premise of XML data interchange (between remote data objects and layers of multi-tier apps) on top of HTTP (AKA, SOAP). .NET\'s web services in general assume SOAP messaging models. EJB, JDBC, etc. leave the data interchange protocol at the developer\'s discretion, and operate on top of either HTTP, RMI/JRMP or IIOP.

The comparisons in this table only scratch the surface. Here\'s an executive summary of .NET vs. J2EE:

Features: .NET and J2EE offer pretty much the same laundry of list of features, albeit in different ways.

Portability: The .NET core works on Windows only but theoretically supports development in many languages (once sub-/supersets of these languages have been defined and IL compilers have been created for them). Also, Net\'s SOAP capabilities will allow components on other platforms to exchange data messages with .NET components. While a few of the elements in .NET, such as SOAP and its discovery and lookup protocols, are provided as public specifications, the core components of the framework (IL runtime environment, ASP+ internals, Win Forms and Web Forms component "contracts", etc.) are kept by Microsoft, and Microsoft will be the only provider of complete .NET development and runtime environments. There has already been some pressure by the development community for Microsoft to open up these specifications, but this would be counter to Microsoft\'s standard practices.

J2EE, on the other hand, works on any platform with a compliant Java VM and a compliant set of required platform services (EJB container, JMS service, etc., etc.). All of the specifications that define the J2EE platform are published and reviewed publicly, and numerous vendors offer compliant products and development environments. But J2EE is a single-language platform. Calls from/to objects in other languages are possible through CORBA, but CORBA support is not a ubiquitous part of the platform.

The Bigger Picture

These last points highlight some of the key differentiators between .NET and J2EE, and point towards Microsoft\'s real play here. Microsoft is doing two very notable things with .NET: It is opening up a channel to developers in other programming languages, and it is opening up a channel to non-.NET components by integrating XML and SOAP into their messaging scheme.

By allowing cross-language component interactions, .NET is enfranchising Perl, Eiffel, Cobol, and other programmers by allowing them to play in the Microsoft sandbox. Devotees of these languages are particularly amenable to gestures like this, since for the most part they have felt somewhat disenfranchised and marginalized in the Microsoft/Sun/Open Source wars. And by using XML and SOAP in their component messaging layer, Microsoft is bolstering their diplomatic face and adding an element of openness to their platform, providing ammunition against claims of proprietary behavior.

What\'s the correct response?

For Microsoft developers:

.NET is a good thing for those of you committed to Microsoft architectures. ASP+ is better than ASP, ADO+ is better, but different, than ADO and DCOM, C# is better than C and C++. The initial version of .NET won\'t be real until sometime in 2001, so you have some time to prepare, but this will undoubtedly become the default development environment for Microsoft platforms. And if you\'re developing within the Microsoft development framework now, you will undoubtedly benefit from adopting elements of the .NET framework into your architectures.

However, several of the goals of the .NET platform are fairly lofty and not at all guaranteed to fly, at least not in the short term. The IL common language runtime, for example, has some fairly significant hurdles to overcome before it has any real payoff for developers. Each language that wants to integrate with the component runtime has to define a subset/superset of the language that maps cleanly into and out of the IL runtime, and has to define constructs that provide the component metadata that IL requires. Then compilers (x-to-IL and IL-to-x) will have to be developed to both compile language structures (objects, components, etc.) into IL component bytecodes, and also generate language-specific interfaces to


久久精品在这里_成人99免费视频_国产激情视频一区二区在线观看_国产伦精品一区二区三区免费 _亚洲午夜免费福利视频_色狠狠色狠狠综合_av在线综合网_91毛片在线观看_欧美视频一区二区在线观看_极品美女销魂一区二区三区免费_国产亚洲欧美激情_在线免费观看不卡av_日韩不卡一区二区三区_91精品国产麻豆国产自产在线_亚洲国产精品一区二区久久恐怖片_a4yy欧美一区二区三区
日韩精品久久一区二区三区| 国产一区视频观看| 中文字幕一区在线观看| 日韩国产欧美一区| 91久久精品www人人做人人爽| 亚洲欧洲精品一区二区三区不卡| 日本精品一区二区| 极品校花啪啪激情久久| 另类中文字幕网| 天天亚洲美女在线视频| 国产欧美在线观看一区| 色综合久久久久综合99| 成人免费视频一区二区| 亚洲另类在线视频| 中文字幕在线不卡一区| 51午夜精品国产| 91精品国产一区二区人妖| 蜜桃91精品入口| 欧美激情第六页| 亚洲国产精品综合| 91黄色小视频| 91精品国产aⅴ一区二区| 在线视频91| 在线观看免费一区| 91精品国产麻豆国产自产在线 | 国产精品国产精品| 国产精品日韩一区二区免费视频| 久久99久久精品欧美| 国产精品久久久久久久久免费桃花 | 亚洲18女电影在线观看| 久久久三级国产网站| 欧美日韩国产美| 久久综合资源网| 亚洲男帅同性gay1069| 久久久综合激的五月天| 欧美色图在线观看| 精品美女一区二区| 综合婷婷亚洲小说| 麻豆精品一区二区三区| 亚洲一区二区三区小说| 日韩免费看的电影| 日韩一区日韩二区| 老司机午夜精品99久久| 一区二区三区在线观看动漫| 久久伊人蜜桃av一区二区| 欧美午夜视频网站| 久久婷婷久久一区二区三区| 91精品国产欧美一区二区| 一本色道久久综合亚洲aⅴ蜜桃| 国产精品一区视频| 日本精品一级二级| 国产亚洲va综合人人澡精品| 精品久久久久久久久久久久包黑料| 欧美精品久久久久久久多人混战 | 九一九一国产精品| 91精品久久香蕉国产线看观看 | 北条麻妃高清一区| 色综合久久天天综合网| 色天天综合久久久久综合片| 一区二区三区视频在线播放| 亚洲激情电影在线| 久久久久国产精品人| 久久久久久亚洲综合影院红桃| 精品久久久久久久人人人人传媒| 制服丝袜亚洲色图| 欧美高清在线精品一区| 中文字幕一区二区日韩精品绯色| 欧美国产国产综合| 精品亚洲国内自在自线福利| 国产精品99久久久| 色噜噜狠狠一区二区三区| 亚洲免费不卡| 久久先锋影音av| 久草中文综合在线| 日韩电影在线播放| 国产精品少妇自拍| 国产白丝精品91爽爽久久 | 国产九色sp调教91| 日韩欧美视频一区二区| 在线国产99| 欧美韩日一区二区三区四区| 亚洲三级免费电影| 成人av午夜电影| 欧美日韩国产小视频在线观看| 欧美精品一卡二卡| 夜夜精品浪潮av一区二区三区| 五月婷婷激情综合网| 麻豆国产一区二区| 精品中文字幕人| 欧美精品一区二区三区蜜桃| 亚洲欧洲日韩av| eeuss国产一区二区三区| 精品一区二区三区免费毛片| 先锋在线资源一区二区三区| 精品视频在线免费看| 欧美电影免费提供在线观看| 亚洲国产成人一区二区三区| 亚洲一区二区不卡免费| 日av在线不卡| 亚洲欧美日韩另类精品一区二区三区| 国产精品久久久久久久久免费桃花 | 精品久久一区二区| 激情综合色播五月| 欧美色区777第一页| 久久久久国色av免费看影院| 亚洲精品中文在线| 精品国产乱码久久久久久久软件 | 欧美在线一区二区三区四区| 精品视频一区二区三区免费| 26uuu国产在线精品一区二区| 一区二区三区四区亚洲| 久久99久久精品欧美| 国产精品一区免费观看| 欧美性色综合网| 免费精品视频在线| 欧美日韩午夜在线| 极品美女销魂一区二区三区| 精品国产一区二区三区免费| 91搞黄在线观看| 日本成人在线一区| 欧美亚洲动漫制服丝袜| 亚洲欧美国产毛片在线| 国产一区二区三区在线观看免费视频 | 免费精品视频一区二区三区| 在线播放国产精品二区一二区四区 | 亚洲 欧美综合在线网络| 不卡的av网站| 精品日产卡一卡二卡麻豆| 亚洲18影院在线观看| 91亚洲国产成人精品一区二区三 | 色诱视频网站一区| 日本免费在线视频不卡一不卡二| 91手机在线视频| 国产精品色婷婷久久58| 国产麻豆精品在线| 日韩欧美不卡一区| 91原创国产| 一区二区三区91| 欧美嫩在线观看| 91在线高清观看| 亚洲激情av在线| 欧美三级三级三级爽爽爽| 亚洲一区二区欧美激情| 97人人香蕉| 亚洲福利国产精品| 欧美美女喷水视频| 国产精选一区二区| 日本在线不卡一区| 精品久久久久香蕉网| 韩国毛片一区二区三区| 日本在线高清视频一区| 国产精品家庭影院| 亚洲欧美日韩电影| 欧美中文字幕一区二区三区| 天天做天天摸天天爽国产一区 | 91在线观看地址| 一区二区三区在线免费| 成人在线观看91| 亚洲动漫第一页| 日韩午夜激情视频| 蜜桃臀一区二区三区| 国产精品国产三级国产普通话蜜臀| 成人h动漫精品| 亚洲欧美一区二区三区孕妇| 国产精品一区视频网站| 久久久久久久久免费| 风间由美一区二区三区在线观看| 欧美性猛交xxxxxx富婆| 日韩高清不卡在线| 精品国精品国产尤物美女| 不卡视频在线看| 亚洲国产精品久久久久婷婷884| 欧美日韩在线不卡一区| 亚洲色图制服诱惑 | 欧美日韩综合色| 国产精品久久久久久久久婷婷 | 国产精品剧情在线亚洲| 99re热精品| 裸体在线国模精品偷拍| 欧美日韩不卡在线| 久草精品电影| 成人免费精品视频| 欧美一区二区三区视频| 国产成人av电影在线| 91精品国产91久久久久久一区二区| 国产一区二区精品久久| 91精品国产91久久久久久最新毛片| 国产一区二区在线视频| 欧美变态tickling挠脚心| 成人亚洲一区二区一| 久久午夜色播影院免费高清| www.亚洲激情.com| 日日夜夜精品视频免费| 欧美精品一二三| 亚洲国产一区在线| 精品无人区一区二区三区竹菊| 亚洲一级二级三级| 国产日韩欧美激情| 日韩欧美在线影院| 欧美精品国产精品|