Jboot 2.2.0 release, distributed development easier and faster

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.

10.1 of tomorrow, today released 2.2.0 to give you a gift of state-owned enterprises. This version mainly adds CRUD method according Columns, while enhancing the ability to generate code generator, Jboot lasted nearly three years, it has released a version of 100+, mature and stable.

Jboot 3.0 also starting to plan, and is expected to be out by the end of the first version.

Jboot v2.2.0 update as follows:

  • New: JbootModel new method deleteByColumns
  • New: JbootModel new method batchDeleteByIds
  • New: JbootModel new method findCountByColumns
  • New: Columns Add a query not in function
  • Add: Add method findFirstByColumns series code generator
  • Add: Add method findListByColumns series code generator
  • Add: Add method findCountByColumns series code generator
  • Add: Add method paginateByColumns series code generator
  • Add: Add method deleteByColumns series code generator
  • Optimization: Optimization Service layer code generator
  • Optimization: AnnotationUtil of performance problems
  • Optimization: Update jboot / cglib / fastjson / druid / HikariCP that rely on
  • Optimization: perfect docker deployment-related issues
  • Optimization: Optimization logic DialectKit to make it easier to read
  • Repair: Repair fatjar package, the acquisition is not the right questions classpath and banner, etc.
  • Repair: JbootScheduleManager can not remove tasks that have been added problem

maven dependence:

<dependency>
    <groupId>io.jboot</groupId>
    <artifactId>jboot</artifactId>
    <version>2.2.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/110263/jboot-2-2-0-released