Jboot v2.1.1 release, upgrade to the latest version JFinal and Seata

Jboot is a microprocessor-based service framework JFinal, JFinal-Undertow, Dubbo such as the development of micro-services help developers reduce development threshold. While perfect support in idea, the eclipse maven multi module for java code, html, css, js and other resource files thermal loads, the development of cool cool.

This release, mainly JFinal upgraded to the latest version v4.2, upgraded the framework seata distributed transaction to the latest version 0.6.1.

 

Specific updates are as follows:

  • Added: New type of custom cache AOP support
  • Added: New type of cache type caffeine and caredis
  • New: Added CacheUtil tools for more direct action cache
  • Optimization: When open findById automatic cache, when the cache database query data by mistake, instead of directly available.
  • Optimization: Optimization limiting tool in constructing the service layer resources, in some extreme cases the operation will be duplication of resources.
  • Optimization: Remove FlashMessage module, the module uses very little, but may cause resource waste.
  • Optimization: JFinal upgrade to the latest version v4.1
  • Optimization: Upgrade 0.6.1 to the latest version Seata

 

 

maven dependence:

<dependency>
    <groupId>io.jboot</groupId>
    <artifactId>jboot</artifactId>
    <version>2.1.1</version>
</dependency>

Hello World:

@RequestMapping("/")
public class HelloworldController extends JbootController {

    public void index(){
        renderText("hello world");
    }

    public static void main(String[] args){
        JbootApplication.run(args);
    }
}

More Jboot function, can the venue: https://gitee.com/fuhai/jboot

In addition, JPress is using a similar product Jboot WordPress development, to learn more about the venue: http://www.jpress.io

 

Guess you like

Origin www.oschina.net/news/107260/jboot-2-1-1-released