Welcome To My Open Source Project!
It's Nice To Meet You
Introduction Downloads

Introduction


OkJPA is an open source data persistence library

No XML Config

No more XML configurations any more! Get rid of your xml configuration problems!

Light Library

The size of the library is just 39kbs, it is very light and easy for downloading!

Complete

You don't need to worry about the types of the data in database or in business code! Just enjoy it!

QuickStart


Let's start by a quick example!
  • Step One

    SessionFactory sessionFactory
                          = new SessionFactoryBuilder()
                          .build("datasource.properties");
                          Session session
                = sessionFactory.getSession(true);
                          
  • Step Two

    @Select("select user_id from User where age = ${age}")
    public List<Long>
    getUserIds(@Param("age") int age);
                        
  • Step Three

    UserMapper userMapper
    = session.getMapper(UserMapper.class);
    List list = userMapper.getUserIds(18);
                        
  • Step Four

    So you get the List of the Objects, you can build it into your buisiness logic! If you want more infomation about the usage, go to my github and find out! I got many use cases for you! Enjoy!

  • Come
    And
    Join Me!

I hope you can fork me in the github!
Or you can download from here directly!

Contact


Any Problem? Email me!

Emial Address

[email protected]


My Github

https://github.com/qinjiangbo