Jboot 2.2.4 release, upgrade to the latest version 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 loaded hot, cool-cool development.

 

Jboot v2.2.4 update as follows:

  • Repair: Repair PaginateDirectiveBase individual properties in some cases the presence of thread-safety issues
  • Fix: The problem is not right remarks output code generator default
  • Optimization: CacheUtil convenient way to change the static method directly
  • Optimization: JbootJsonRender use JFinal rendering of JsonRender
  • Optimization: JbootTextRender use JFinal rendering of TextRender
  • Optimization: Optimize performance issues SeataGlobalTransactionHandler of formatMethod
  • Optimization: 0.9.0 update to the latest version Seata
  • Documents: Document reference copy optimization mvc
  • Documentation: Add to Docket seata use

 

maven dependence:

<dependency>
    <groupId>io.jboot</groupId>
    <artifactId>jboot</artifactId>
    <version>2.2.4</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);
    }
}

 

Guess you like

Origin www.oschina.net/news/110674/jboot-2-2-4-released