Skip to content

Url重写

Henry edited this page Oct 23, 2019 · 5 revisions

为了提高Url访问的统一和友好性,一般访问的Url和服务定义的Url有所不同;为了解决这一问题Bumblebee提供Url重写功能;通过Url重写功能可以在转发前进行一个重写后再转发到后台服务。

引用插件

Bumblebee中使用Url重写需要引用两个插件,分别是Bumblebee.ConfigurationBeetleX.Bumblebee.UrlRewrite 。加载启动后就可以通过管理工具进行插件配置.

            g = new Gateway();
            g.HttpOptions(
                o =>
                {
                    o.Port = 80;
                    o.LogToConsole = true;
                    o.LogLevel = BeetleX.EventArgs.LogType.Error;
                });
            g.Open();
            g.LoadPlugin(
                typeof(Bumblebee.Configuration.Management).Assembly,
                typeof(Bumblebee.UrlRewrite.RewriteLoader).Assembly
               );

如果不想自己编写代码可以下载编译的运行包 https://github.com/IKende/Bumblebee/blob/master/bin/ 下载1.1.8或更高版本

插件管理

运行程序后进行配置管理工具的插件管理页面,可以看到Url重写插件,组件默认是启用

image

配置

Url重写需要根据自己的情况进行配置重写规则,配置也比较简单

{
    "Rewrite": [
        {
            "Url": "/home/{action}",
            "Rewrite": "/api/{action}"
        },
        {
            "Url": "/__system/bumblebee/config/{0}.html",
            "Rewrite": "/__system/bumblebee/pluginsconfig.html"
        },
        {
            "Url": "/api/customers/{count}",
            "Rewrite": "/customers/{count}"
        }
    ]
}

可以根据实际情况配置多组重写规则,规则配置保存后会即时生效无须重启服务。配置的规则是否生效可以通过日志查看,把日志配置成info即可在管理插件查看转发的日志 image

使用注意

其他涉及的到Url配置处理的插件都是依据重写前的Url规则