spring-data

    1熱度

    1回答

    我正在使用spring roo開發一個項目,它需要管理多個數據庫。所以我建立了多個數據源和實體管理器工廠。當我運行該項目,我總是得到以下錯誤: 2011-12-14 18:35:39,692 [main] ERROR org.springframework.web.context.ContextLoader - Context initialization failed org.springfr

    13熱度

    4回答

    我想在一個小的獨立應用程序中一起使用彈簧數據和彈簧配置。 ... public static void main(String[] args) { ApplicationContext ctx = new AnnotationConfigApplicationContext(AppConfig.class); ... } 我的問題是如何發現

    2熱度

    1回答

    我很新使用spring-data-jpa,但看起來很有希望。我用它來作這樣在我的應用程序的所有庫: public interface CustomerRepository extends JpaRepository<Customer, Integer>, JpaSpecificationExecutor<Customer> 我看到有一個梅索德呼叫findAll(Specification<T>)進

    2熱度

    2回答

    我有這段代碼來獲取2日期之間的所有交易。我想得到一個desc排序列表。有什麼可能性? @Override public List<Transaction> searchBySubmitDate(final Date startDate, final Date endDate) { return transactionRepository.findAll(n

    1熱度

    1回答

    我對SpringData MongoDB的一些測試程序的工作,我做了同樣的,作爲其http://static.springsource.org/spring-data/data-document/docs/1.0.0.M2/reference/html/#mongo.core提到的擊打其表現異常 package com.springMongo.core; import org.apache.c

    2熱度

    1回答

    我正在使用Mongo和Spring Data。 我有兩個(第一類)實體(@Documents)Entity1和Entity2,其中Entity1在其中包含Entity2的引用(@DBRef)。一切工作正常,但執行派生查詢,如: public List<Entity1> findByEntity2Property1(String property1) 上述查詢返回沒有結果,雖然有文檔與給定的查詢

    3熱度

    2回答

    我們有一個相當複雜的數據模型,並在MySQL上使用Hibernate和Spring Data JPA。我們有一個基類,所有域對象擴展到最小化鍋爐板代碼。我希望能夠僅使用此類在所有域對象中添加軟刪除功能。然而,@SQLDelete要求子句中的表名: @SQLDelete(sql="UPDATE (table_name) SET deleted = '1' WHERE id = ?") @Where

    1熱度

    2回答

    是否有任何方法通過SpringData庫管理員爲MongoDB進行像NotNull,Size等驗證?

    28熱度

    2回答

    我有一個標準的POJO,它有一組屬性。 POJO已被註釋爲@Document,以便作爲文檔在MongoDB中持久存在。 如何(註釋??)我可以忽略/避免POJO中的某個屬性被持久化?

    4熱度

    4回答

    我爲我的web應用程序(靠近社交網站)使用Spring Data(Mongo)。現在,我希望提供搜索功能,覆蓋應用程序中寫入的內容(如帖子,標籤,朋友等)。我相信Lucene/Solr是這種情況下更好的庫之一,但我不確定如何使用(集成?)它與Spring Data(或者在Spring中有一些固有的支持)。 希望對此有所幫助(文檔,鏈接,博客文章等)!