Jboot 2.2.5 release, upgrade to the latest version JFinal

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.5 update as follows:

  • New: JbootConfigManager refreshAndGet new method for new content when reading the configuration file changes
  • Optimization: instruction JbootPaginateDirective can pass pageAttr specify attributes page set
  • Optimization: optimization logic of the code judgment of the browser RequestUtil
  • Optimization: Upgrade JFinal, Metrics wait until the latest version
  • Documentation: given seata distributed transaction-related documents and test demo
  • Documents: New JFinalConfig configuration related documents

 

maven dependence:

<dependency>
    <groupId>io.jboot</groupId>
    <artifactId>jboot</artifactId>
    <version>2.2.5</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/110955/jboot-2-2-5-released