ActFramework 1.7.0 - 1.8.1,高性能 Java Web 框架

栏目: 软件资讯 · 发布时间: 6年前

内容简介:没有及时发布新闻,真是不好意思。今天打个新闻批发,把 Act 1.7.0 到 1.8.1 中值得注意的更新给大家汇报一下。 Act-1.8.1 - 2018-03-11 支持 Request Forward @GetAction("shortcut/{shortUrl}")  public voi...

没有及时发布新闻,真是不好意思。今天打个新闻批发,把 Act 1.7.0 到 1.8.1 中值得注意的更新给大家汇报一下。

Act-1.8.1 - 2018-03-11

  • 支持 Request Forward

@GetAction("shortcut/{shortUrl}") 
public void shortUrlHandler(String shortUrl, UrlMapper urlMapper) {
   String longUrl = urlMapper.get(shortUrl);
   Controller.Util.forward(longUrl);
}

forward 和 redirect 的区别:forward 不会发回 303 给浏览器,而是在应用内部直接分派到相关请求响应器。注意:forward 只支持 HTTP GET 请求

更多 act-1.8.1 的内容

Act-1.8.0 - 2018-03-04

  • 实现了新的响应输出模型,大大优化响应输出的内存,对大字节内容输出性能上有少量提升

  • 项目布局支持 gradle-groovy

  • CacheService 注入支持 @Named

// Before
private CacheService fooCache = Act.app().cache("foo");

// After
@Named("bar")
@Inject
private barCache;
  • timestamp auditing 支持在 base class 上定义的 timestamp 字段

@MappedSuperClass
public class BaseModel {

    @CreatedAt public Date created;
    @LastModifiedAt public Date lastModified;

}
  • @Configuration 支持 static 字段

@Configuration("foo.bar")
public static String fooBar;

更多 act-1.8.0 的内容

Act-1.7.2 - 2018-02-25

  • 支持 Timestamp Audting

public class User {
    public String username;
    ...
    @CreatedAt
    public Date created;
    @LastModified
    public Date lastModified;

}

更多 act-1.7.2 的内容

Act-1.7.1 - 2018-02-21

  • 允许用户定义 action handler 支持 Partial Path

@GetAction("/file/...")
public File handleFileRequest(@PartialPath String filePath) {
    // filePath should be anything in the URL path that after `/file/`
}

更多 act-1.7.1 的内容

Act-1.7.0 - 2018-02-19

  • 静态资源支持 DirectoryIndex - 自动查找目录下的 index.html 文件

  • API Doc TOC 以 HTTP Method 和 URL 组织

  • @Sensitive 数据字段支持

// creditCardNo 字段内容会被框架加密处理后存入数据库
// 从数据库取出数据时会自动解密
public class User {
    public String firstName;
    public String lastName;
    public String email;
    public String mobile;
    @Sensitive
    public String creditCardNo;   
}
  • 简化密码字段处理

// 老办法
public class User {
    public String username;
    private String passhash;
    public void setPassword(String password) {
        passhash = Act.crypto().passwordHash(password);
    }
}

// 新办法
public class User {
    public String username;
    @Password
    public String password;
}
  • 简化方法执行的测量

// 老方式
public class Foo {
    private Metric metric = Act.metricPlugin().metric("app");
    // measure bar1 execution time
    public void bar1() {
        Timer timer = metric.startTimer("bar1");
        try {
            ...
        } finally {
            timer.stop();
        }
    }
    // measure bar2 execution count
    public void bar2() {
        metric.countOnce("bar2");
        ...
    }
}

// 新方式
// define measure namespace.
// `("foo")` is optional and can be inferred from class name
@MetricLabel("foo")
public class Foo {
    @MeasureTime("bar1") // ("bar1") is optional and can be inferred from method name
    public void bar1() {
        ...
    }
    @MeasureCount("bar2") // `("bar2")` is optional and can be inferred from method name
    public void bar2() {
        ...
    }
}
  • AppEvent 重命名为 SysEvent, AppEventId 重命名为 SysEventId

  • 支持 JAX-RS 方式定义 Controller Action Handler

public class TestController {

    // Act Style
    @GetAction("foo")
    public String foo() {return "foo";}

    // JAX-RS style
    @GET @PATH("bar")
    public String bar() {return "bar";}

}
public class Demo {
    @LoadResource("name.list")
    public List<String> nameList

    @LoadResource("name.list")
    public File nameListFile

    @LoadResource("name.list")
    public Set<String> uniqNameList;

    @LoadResource("pojo.json")
    public MyPojo myPojo;
}

更多 act-1.7.0 的内容


【声明】文章转载自:开源中国社区 [http://www.oschina.net]


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

C程序设计的抽象思维

C程序设计的抽象思维

Eric S.Roberts / 闪四清 / 机械工业出版社 / 2012-5 / 99.00元

Eric S. Roberts所著的《C程序设计的抽象思维》是一本关于C语言的经典图书。本书共计17章,分为4部分,第一部分概述计算机导论课程中涉及的基本编程概念;第二部分讨论递归算法,其中结合大量示例,有助于读者轻松理解和掌握晦涩的概念;第三部分不仅介绍了用非递归算法实现的抽象数据类型,还提供了一些工具,有助于读者理解数据抽象的概念;第四部分重点介绍采用递归算法实现的抽象数据类型。本书重点突出,......一起来看看 《C程序设计的抽象思维》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

SHA 加密
SHA 加密

SHA 加密工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试