Jboot 2.3.1 release, increase output to SQL development mode

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.

This version mainly to increase in development mode, when we operate on the database, the output of the complete sql, in fact, the output of sql, JFinal itself already supports, but does not display parameters, this is mainly to enhance the complete parameter display Features.

Jboot v2.3.1 update as follows:

  • The output of the full SQL New SqlDebugger, easy to execute SQL time: New
  • Optimization: JFinal and upgrade to the latest version JFinal-Undertow
  • Optimization: Improved Log JFinal to support the latest log interfaces
  • Optimization: auto_copy characteristic delete JbootModel to improve performance
  • Optimization: Modify Sharding-JDBC is provided, can increase only when needed
  • Optimization: Optimize pom.xml, defined DependencyManagement to reduce conflicts version of Maven transitive dependencies

maven dependence:

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

 

Guess you like

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