ORM framework Bee V1.11_3.20 released, custom dynamic SQL tags

Bee, the Java ORM tool in the new era of the Internet, is faster, simpler, more automatic, faster to develop, faster to run, and smarter!

Bee frees programmers/software engineers from manual coding, Bee is more suitable for the era of intelligent software manufacturing!

Determined to be the most user-friendly software!

V1.11.0.3.20 ( Spring Equinox )

Customize dynamic SQL tags, @in, @toIsNULL1, @toIsNULL2, <if isNotNull>, <if isNotBlank>.
Dynamic SQL, convert the list to a statement like in (1,2,3), no foreach, batch insert Also does not need foreach.
Separate Chinese API.

example:

1.1 An orm tool

<select id="countByUserList" resultType="_int" parameterType="list">
select count(*) from users
  <where>
    id in
    <foreach item="item" collection="list" separator="," open="(" close=")" index="">
      #{item.id, jdbcType=NUMERIC}
    </foreach>
  </where>
</select>

1.2 Bee

select count(*) from users where id in #{list @in}

Define a list parameter (which can support List and Set types) and pass it in.

Detailed example address: https://my.oschina.net/u/4111850/blog/5493477

 

Next feature announcement:

Ready to enter the complex sub-database sub-table. . .

Good news: Enterprise users who register before Labor Day on May 1,
2022 can get professional production environment help to escort your system and improve performance; individual users can get personalized consultation after registering and joining the group !

Registered address:

https://gitee.com/automvc/bee/issues/I3PIUJ

https://github.com/automvc/bee/issues/43

 

Recently added features:

ORM framework Bee V1.11.0.1.1 (2022 new year version) released, faster, simpler and more automatic

ORM framework Bee V1.11.0.2.1 (Spring Festival version 2022) released, interceptor, multi-tenancy (not closed during Chinese New Year)

ORM framework Bee V1.11.0.2.4 (2022 Beijing Winter Olympics Edition) released, L2 cache extension support (Redis)

ORM framework  Bee  2022 Romantic version released, with JustFetch, Datetime and other annotations and Jndi support

ORM framework Bee V1.11.0.2.20 2022 (Glory) version released, improve the interceptor, add a variety of annotations to simplify development

ORM framework Bee V1.11.0.2.28 released, query result interception, ShardingStruct preparation for sub-database and sub-table

ORM framework Bee V1.11.0.3.8 ( Lady First) released, setting parameter converter, automatic conversion of Json and Javabean properties

ORM framework Bee V1.11.0.3.12 (Arbor Day Edition) released, supports Cassandra (also can automatically generate tables), dialect register

https://gitee.com/automvc/bee#bee main features

------------------------------------------------------------------------

Bee  is a simple, easy-to-use, powerful, fast development, and less coding JAVA ORM framework. Connections and transactions can be managed by the Bee framework.  Bee simplifies the coding workload for interacting with DB, and is  a Java framework  with O(1) coding complexity !  

Bee is simple and easy to use: single-table operations, multi-table association operations, you can complete SQL operations without writing SQL, with very few statements; the concept is simple , and you can get started in 10 minutes.
Bee is powerful: complex queries also support the object-oriented method, the paging query performance is higher, and the first-level cache can support personalized optimization; it has distributed characteristics. Advanced requirements, you can also easily customize the SQL statement .

Project homepage on Code Cloud:

https://gitee.com/automvc/bee

https://gitee.com/automvc/bee-springboot

github:

https://github.com/automvc/bee

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324519662&siteId=291194637