C# GWT 和 .NET
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1085258/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
GWT and .NET
提问by Joshscorp
How can I use GWT together with Visual Studio to create an ASP.NET website? If it is possible.
如何将 GWT 与 Visual Studio 一起使用来创建 ASP.NET 网站?如果可能的话。
Thanks
谢谢
采纳答案by Tom
You can use GWT to generate the client side code writing in Java and use asp.net for the back end.
您可以使用 GWT 生成用 Java 编写的客户端代码,并使用 asp.net 作为后端。
It's a little trickier as you won't get the serialization across the wire for free that you'd get from using Java on the back end too.
这有点棘手,因为您不会像在后端使用 Java 那样免费获得在线序列化。
I wouldn't really recommend this approach it's bound to be a hassle to maintain.
我不会真正推荐这种方法,它肯定会很麻烦。
I'd recommend using a good javascript toolkit instead, such as jquery and jquery UI.
我建议改用一个好的 javascript 工具包,例如 jquery 和 jquery UI。
回答by Jader Dias
A similar approach is to use Script#which requires only the use of C# instead of JS for client side code.
类似的方法是使用Script#,它只需要使用 C# 而不是 JS 来处理客户端代码。
I tried it myself and I didn't like it, because at the time the code was inline with the HTML.
我自己尝试过,但我不喜欢它,因为当时代码与 HTML 内联。
But it seem that the upcoming version of ASP.NET (already available as Beta) has new approaches to fight disadvantages that ASP.NET had in comparison to Java+GWT.
但似乎即将推出的 ASP.NET 版本(已经作为 Beta 版提供)有新的方法来克服 ASP.NET 与 Java+GWT 相比的缺点。
回答by jottos
GWT can be used with any back end with a little work. Out of the box it uses a servlet container but you don't need to keep this container. The key item in the container is the script tag to load the GWT compiled code, for example:
GWT 可以通过一点工作与任何后端一起使用。开箱即用,它使用 servlet 容器,但您不需要保留此容器。容器中的关键项是加载GWT编译代码的脚本标签,例如:
<script language='javascript' src='com.abaqus.gwt.GeoApp.nocache.js'></script>
GWT takes it from there and is at this point independent of the back-end if you want it to be. The one are that is a source of confusion is the GWT RPC. This does not need to be used as GWT supports general JSON request support. .NET integration using JSON discussed here:
GWT 从那里获取它,如果您愿意,此时它独立于后端。一个是混淆的根源是 GWT RPC。这不需要使用,因为 GWT 支持通用 JSON 请求支持。此处讨论了使用 JSON 的 .NET 集成:
http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/9e1c82cd67e2f27b?hl=en
http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/9e1c82cd67e2f27b?hl=en
There are also projects that are tying GWT RPC to .NET see:
还有一些项目将 GWT RPC 与 .NET 联系起来,请参阅:
http://code.google.com/p/gwtrpcnet/
GWT is used pretty successfully with a number of back-ends other than Java servlets so as hassles, other than working out the details of initial setup there shouldn't be many. Even debugging in Eclipse should work (yes .NET'rs will need to use Eclipse to debug)
GWT 与 Java servlet 以外的许多后端一起使用非常成功,因此很麻烦,除了解决初始设置的细节之外,应该不会有很多。即使在 Eclipse 中调试也应该可以工作(是的,.NET 需要使用 Eclipse 进行调试)
回答by luciano
I've published an example at www.cromoteca.com/en/blog/gwt-asp-net-proxy. I use NetBeans or Eclipse to write GWT code and Visual Studio for the server part. My example include a servlet proxy that connects the two development environments so that you can use GWT dev mode with the real server code written in ASP.NET. It's up to you to choose a data format to send data to the client, I chose JSON
since it's already available in both .NET and GWT.
我在www.cromoteca.com/en/blog/gwt-asp-net-proxy 上发布了一个示例。我使用 NetBeans 或 Eclipse 为服务器部分编写 GWT 代码和 Visual Studio。我的示例包括一个连接两个开发环境的 servlet 代理,以便您可以将 GWT 开发模式与用 ASP.NET 编写的真实服务器代码一起使用。由您来选择将数据发送到客户端的数据格式,我选择了JSON
它,因为它已经在 .NET 和 GWT 中可用。