magic-api 0.4.3 released, a framework for rapid interface development

This update content:

  • Fix the bug that cannot be operated when entering the breakpoint
  • Fix }the problem of missing default request parameters when creating an interface
  • Optimized ifsentence and 三元运算符 supported if(xxx) writing

Project Introduction

magic-api is an interface rapid development framework, scripting and configuration are written through web pages, automatically mapped to HTTP interfaces, without defining Java objects such as Controller, Service, Dao, Mapper, XML, VO, etc.

How to use

maven introduction

<!-- 以spring-boot-starter的方式引用 -->
<dependency>
	<groupId>org.ssssssss</groupId>
	<artifactId>magic-api-spring-boot-starter</artifactId>
    <version>0.4.3</version>
</dependency

Modify application.properties

server.port =9999
 #Configure web page entrance 
magic.web =/magic/web
 #The following configuration needs to be modified 
according to the actual situation spring.datasource.url =jdbc:mysql://localhost/test
 spring.datasource.username =root
 spring. datasource.password =123456789
 spring.datasource.driver-class-name =com.mysql.jdbc.Drive

Execute table creation statement

Execute the db/magic-api.sql table creation statement in the source code 

Online editing

Access http://localhost:9999/magic/webto operate

Documentation & Demo

Project screenshot

Overall screenshot

Switch skin

Code hint

DEBUG

Guess you like

Origin www.oschina.net/news/119647/magic-api-0-4-3-released