【2019年8月21日】C#如何快速使用Owin技术部署轻量级webApi服务
温馨提示:
本文最后更新于 2020年03月05日,已超过 1,716 天没有更新。若文章内的图片失效(无法正常加载),请留言反馈或直接联系我。
写在前面:
除了使用IIS可以启用WebApi之外,微软还提供了Owin技术,免除了IIS繁琐的部署配置,只需要运行编写好的程序,即可启用webApi服务,是不是很爽呢?
对于Owin技术的详细介绍这里就不多说了,大伙自行百度。
Owin服务是微软的轻量级的服务,如何快速搭建?很多人搭建的过程中经常会少引用几个,造成项目服务迟迟启动不起来
正题:
一、需要大量的Nuget包
主要有:
1、owin
2、owin.hosting
3、webapi.owin
4、owin.host.httplistener
5、webapi.cors
如果担心引用少了,可参看我的引用
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.Cors" version="5.2.7" targetFramework="net461" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.7" targetFramework="net461" />
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.7" targetFramework="net461" />
<package id="Microsoft.AspNet.WebApi.Cors" version="5.2.7" targetFramework="net461" />
<package id="Microsoft.AspNet.WebApi.Owin" version="5.2.7" targetFramework="net461" />
<package id="Microsoft.Owin" version="4.0.1" targetFramework="net461" />
<package id="Microsoft.Owin.Host.HttpListener" version="4.0.1" targetFramework="net461" />
<package id="Microsoft.Owin.Hosting" version="4.0.1" targetFramework="net461" />
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net461" />
<package id="Owin" version="1.0" targetFramework="net461" />
</packages>
再或者,你可以尝试一键搞定:nuget 下载
OwinSelfHost
Nuget包之后会自动生成引用
二、创建Startup类
该类用于实现webApi的各项配置
using Owin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
using System.Web.Http;
using System.Web.Http.Cors;
namespace MyOwinServer
{
class Startup
{
//需要nuget owin、cors、hosting、listener
// This code configures Web API. The Startup class is specified as a type
// parameter in the WebApp.Start method.
/// <summary>
/// 配置webApi文本格式、路由规则、跨域规则等参数
/// </summary>
/// <param name="appBuilder"></param>
public void Configuration(IAppBuilder appBuilder)
{
// Configure Web API for self-host.
HttpConfiguration config = new HttpConfiguration();
config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
config.EnableCors(new EnableCorsAttribute("*", "*", "*"));//解决跨域问题,需要nuget Cors
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
appBuilder.UseWebApi(config);
}
}
}
三、编写启动WebApi服务的方法
using Microsoft.Owin.Hosting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
namespace MyOwinServer
{
class Program
{
static void Main(string[] args)
{
ApiInit();
}
/// <summary>
/// 初始化webApi
/// </summary>
private static void ApiInit()
{
try
{
//端口号
string port = "9100";
//电脑所有ip地址都启用该端口服务
string baseAddress = "http://+:" + port + "/";
////指定ip地址启用该端口服务
//string baseAddress = "http://192.168.0.70:" + port + "/";
//启动OWIN host
WebApp.Start<Startup>(url: baseAddress);
//打印服务所用端口号
Console.WriteLine("Http服务端口:" + port);
//创建HttpCient测试webapi
HttpClient client = new HttpClient();
//通过get请求数据
var response = client.GetAsync("http://localhost:" + port + "/api/home").Result;
//打印请求结果
Console.WriteLine(response);
Console.WriteLine("Http服务初始化成功!");
}
catch (Exception ex)
{
Console.WriteLine("Http服务初始化失败!");
Console.WriteLine(ex.ToString());
}
}
}
}
四、编写webApi测试接口例子
调用的时候url是 http://localhost:9100/api/home
接口的命名规则是:接口名+Controller
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.Http;
namespace MyOwinServer
{
public class HomeController:ApiController
{
public IHttpActionResult Get()
{
return Ok("Hello World!");
}
public void Post([FromBody]string value)
{
}
// PUT api/values/5
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/values/5
public void Delete(int id)
{
}
}
}
五、调用启动web服务的方法
直接调用 ApiInit();
六、运行结果
1、软件启动后的结果
因为启用的代码中直接请求了home接口所以有返回数据
//创建HttpCient测试webapi
HttpClient client = new HttpClient(); //通过get请求数据
var response = client.GetAsync("http://localhost:" + port + "/api/home").Result; //打印请求结果
Console.WriteLine(response);
2、使用浏览器测试结果
url格式是 http://{ip地址}:{端口号}/api/{接口名}/{id参数}
该格式可以通过Startup中的路由规则更改
ip地址:127.0.0.1
本机的ip地址
localhost
写在结尾:
主要难点就是各种nuget包的引用,少了其中一个就有可能会报错!
注意:如果在win7及以上的系统提示服务启动失败,需要以管理员身份运行软件来解决!
正文到此结束
- 本文标签: 其他
- 本文链接: http://www.unknowtime.top/article/135
- 版权声明: 本文由仓颉大哥原创发布,转载请遵循《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权