皇上,还记得我吗?我就是1999年那个Linux伊甸园啊-----24小时滚动更新开源资讯,全年无休!

NutzBoot v2.3.3.v20190329 支持 Fescar 分布式事务

NutzBoot,简称NB,是可靠的企业级微服务框架,提供自动配置,嵌入式web服务,分布式会话,流控熔断,分布式事务等一篮子解决方案,只需简单几行代码,即可一个完善的微服务进程.

本次更新带来fescar的支持, 至此, 阿里系nacos(配置与注册)/sentinel(流控)/fescar(分布式事务)均完成适配

代表曲目: 雪落下的声音
兼容性: 继续无缝兼容2.x系列的

关键变更:

1. add: 支持fescar分布式事务,对应fescar 0.4版, AT模式
2. add: 添加ftp客户端的支持,方便做部署运维, 这个已经在nutzwk中实际运用
3. fix: 由于jetty版本升级,导致无static目录下jetty启动出错的bug
4. update: starter-fastdfs 支持通过文件路径上传

码云地址: https://gitee.com/nutz/nutzboot 来个star

package io.nutz.demo.simple;

import org.nutz.boot.NbApp;
import org.nutz.ioc.loader.annotation.*;
import org.nutz.mvc.annotation.*;

@IocBean
public class MainLauncher {

    @Ok("raw")
    @At("/time/now")
    public long now() {
        return System.currentTimeMillis();
    }

    public static void main(String[] args) throws Exception {
        new NbApp().run();
    }
}

当前版本的maven配置

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.nutz</groupId>
            <artifactId>nutzboot-parent</artifactId>
            <version>2.3.3.v20190329</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<dependencies>
    <dependency>
        <groupId>org.nutz</groupId>
        <artifactId>nutzboot-starter-jetty</artifactId>
    </dependency>
    <dependency>
        <groupId>org.nutz</groupId>
        <artifactId>nutzboot-starter-nutz-mvc</artifactId>
    </dependency>
</dependencies>

转自 https://www.oschina.net/news/105520/nutzboot-2-3-3-released