Git Product home page Git Product logo

springjdbc-jade's Introduction

springjdbc-jade

Introduction

平时使用springjdbc时,一直想封装一个公用方法。发现rose-jade封装的很好,留下方便使用

修改可以用columns可以定义不规则字段

修改可以定义接口后,还能实现自己的自定义实现类

interface CustomDAO{
    List<User> findCustom();
}

@Repository
class Custom implements CustomDAO{
	@Override
	public List<User> findCustom() {
		// do something
		return null;
	}
	
}

@DAO
interface UserDAO extends CustomDAO{
    // 准备数据 (DDL)
    @SQL("create table user (id int, name varchar(200));")
    void createTable();
    @SQL("insert into user (id, name) values(:1.id, :1.name);")
    int[] insert(List<User> users);
}

springjdbc-jade's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.