Jboot 2.3.0 release, microprocessor-based service framework of 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 heat load. Shuang Shuang development and happy life.

Jboot v2.3.0 update as follows:

  • New: CacheTime tools, easy to use annotations
  • New: JbootModel new _getIdValues ​​() method, easy to use in a multi-primary key
  • Optimization: Update to the latest version dependency jackson
  • Optimization: JbootServiceBase.shouldUpdateCache reconstruction method, increased variable id

maven dependence:

<dependency>
    <groupId>io.jboot</groupId>
    <artifactId>jboot</artifactId>
    <version>2.3.0</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/111896/jboot-2-3-0-released