部署WebApi随笔
作者:互联网
1、跨域
NuGet引用Microsoft.AspNet.WebApi.Core
WebApiConfig.cs中配置:
// Web API 配置和服务 config.EnableCors(new EnableCorsAttribute("*", "*", "*"));2
2、清除默认返回XML格式
Global.asax中配置:
GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();
3、Oracle连接配置
NuGet引用Oracle.ManagedDataAccess
1、根据插件生成App.config中的配置添加到Web.config中
2、引用Oracle.ManagedDataAccess.Client
标签:WebApi,Web,部署,配置,ManagedDataAccess,Oracle,随笔,config 来源: https://www.cnblogs.com/mutare/p/12433620.html