RESTful Console Application Introduction Inspirited by RESTFul architecture, A console application targeted to same goals would use a match of RESTful definitions. Design For convenience, we name the imaginary console application as 'app'. RESTful We…
Download Spring.net in http://www.springframework.net/ Install Spring.NET.exe Create a console application, and reference Spring.Core.dll. Add App.config to project, the content is as follows <?xml version="1.0" encoding="utf-8" ?&g…
https://mhusseini.wordpress.com/2015/02/05/fix-visual-studio-2013-razor-cshtml-intellisense-in-class-library-or-console-application/ I tried to use a .cshtml file and the razor syntax in a console application. I was able to build the project, but the…
Using pushState and passing route data via context allows our application to respond to route changes made from Link components, but using the back and forward buttons in the browser doesn’t update the application state as we would expect. In this le…
已知的问题: 1. 调试的时候会报IO 异常,非调试环境是正常的 2. Windows 应用程序才可以使用,可以用非windows应用程序包一层 using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Text; using Syst…
Kafka Web Console:是一款开源的系统,源码的地址在https://github.com/claudemamo/kafka-web-console中.Kafka Web Console也是用Scala语言编写的Java web程序用于监控Apache Kafka.这个系统的功能和KafkaOffsetMonitor很类似,但是我们从源码角度来看,这款系统实现比KafkaOffsetMonitor要复杂很多,而且编译配置比KafkaOffsetMonitor较麻烦. 要想运行这套系统…
http://www.codejava.net/frameworks/spring/spring-mvc-sample-application-for-downloading-files n this article, we are going to show you how to implement file download functionality in a Spring MVC application. The solution is similar to the one descri…
Open Web Interface for .NET (OWIN) defines an abstraction between .NET web servers and web applications. By decoupling the web server from the application, OWIN makes it easier to create middleware for .NET web development. Also, OWIN makes it easier…
You enter a URL into the browser输入一个url地址 The browser looks up the IP address for the domain name浏览器查找域名的ip地址(浏览器缓存→系统缓存→路由器缓存→ISP DNS缓存→从根域名服务器递归搜索) The browser sends a HTTP request to the web server浏览器给web服务器发送一个HTTP请求 The facebook server responds…
本文转自:https://docs.microsoft.com/en-us/aspnet/visual-studio/overview/2013/using-browser-link Browser Link is a new feature in Visual Studio 2013 that creates a communication channel between the development environment and one or more web browsers. You…
https://msdn.microsoft.com/en-us/library/aa767914(VS.85).aspx Registering an Application to a URI Scheme The About Asynchronous Pluggable Protocols article describes how to develop handlers for Uniform Resource Identifier (URI) schemes. In some cas…