-
建议复杂的oracle嵌套查询用with as 语句来处理,要么用中间表
最近看到历史项目里面的很多SQL, 我已经很无语了, 一段SQL 里面层层嵌套,而且有的嵌套层还是一样的。只是稍稍一点点条件不同而已。我见到了一个让我分析了一两个小时的SQL。 因为不是很懂原来的业务,只能从SQL 去倒推,猜想业务是什么样的。
Date: 2017-09-02 View: 1520
-
给同事做的Spring data JPA培训的教程及例子
项目中用到了 Spring data jpa 这个框架来实现持久层,但 jpa本身来说只是一个标准接口,所以还是用到了Hibernate JPA 的实现。spring data jpa 用起来非常简单,主要从下面四个方面来讲解 Spring data jpa 的使用.1. 入门,使用配置 persistence.xml 文件并结合spring bean 管理 entityManagerFactory 方式测试JPA2. 基于spirng data jpa 实现增删改查3. 基于spring data jpa 实现自定义查询4. 如果spring data jpa 不能完成的sql 采用 自定义扩展类完成。5. 在实际项目中去掉 persistence.xml 文件,完全采用配置 entityManagerFactory 来管理.
Date: 2014-04-10 View: 1520
-
写sql语句时应注意的事项
开发人员在写sql语句的时候,通常会受面向对象的思维左右之外,还有其他因素也会影响写sql语句的习惯:1. 以往编程的经验2. 定式思维模式3. 心情好坏对于sql 本身来说,与面向对象没有半毛钱的关系,只是因为ORM 的出现,为了简化编程,好像有了关联,但事实上二者一点关系都没有。要写好SQL 语句并不是一件简单的事。在工作中总结了如下需要注意的地方:
Date: 2013-12-25 View: 1520
-
SPRING DATA JPA 中几种缓存的配置
在用spring data jpa的过程中,采用了ehcache 来做缓存, 是否需要二级缓存,一般不需要,这得看业务的需要,因为这东西如果配置不好,反而会导致性能下降,但如果是有些数据,基本不改动,长期不变,很少修改,而且数据量适中,并且外部使用频率高的情况下,还是可以使用的。就目前研究spring data jpa 来说,有三种情况下有可能会使用到缓存1. spring data jpa 自身的方法2. 扩展spring data jpa 的方法3.完全自己用EntityManager 写语句的缓存.
Date: 2013-07-24 View: 1520
-
Due to limitations of the BasicDBObject, you cant add a second $and
Using Spring data and Mongodb, below is a function to find data within a date range.
Date: 2019-08-18 View: 1520
-
Spring Data MongoDB : Save binary file, GridFS example
In MongoDB, you can use GridFS to store binary files. In this tutorial, we show you how to use Spring Data’s GridFsTemplate to store / read image in / from MongoDB.
Date: 2019-08-18 View: 1520
-
Spring asm dependency issue in Spring Data
Using Spring Data MongoDB 1.2.1.RELEASE and Spring core 3.2.2.RELEASE, while system is starting, it hits some weird spring-asm IncompatibleClassChangeError errors :
Date: 2019-08-18 View: 1520
-
Spring Data MongoDB Auto Sequence ID example
In this tutorial, we will show you how to generate an auto-incrementing sequence id in MongoDB + Spring Data environment.
Date: 2019-08-17 View: 1520
-
Spring Data MongoDB : like query example
In SQL, the ‘like’ query is looks like this :
Date: 2019-08-17 View: 1520
-
Spring Data MongoDB : get last modified records (date sorting)
In Mongodb, you can use sort()to do the date sorting.
Date: 2019-08-17 View: 1520
-
Spring Data MongoDB Select fields to return
In MongoDB console, you can use field:1 to select the fields to return from a query :
Date: 2019-08-17 View: 1520
-
Spring Data MongoDB Aggregation Grouping Example
In this tutorial, we will show you how to do the data grouping with Spring Data + MongoDB aggregation framework.
Date: 2019-08-17 View: 1520
-
Spring embedded database examples
In this tutorial, we will show you a few examples to configure the embedded database engines like HSQL, H2 and Derby in Spring framework.
Date: 2019-08-17 View: 1520
-
jQuery Ajax submit a multipart form
A simple jQuery Ajax example to show you how to submit a multipart form, using Javascript FormData and $.ajax()
Date: 2019-08-11 View: 1520
-
Spring Boot + Spring Data JPA + Oracle example
In this article, we will show you how to create a Spring Boot + Spring Data JPA + Oracle + HikariCP connection pool example.
Date: 2019-08-11 View: 1520