I need to read/refresh some of the spring bean configurations from mongodb during runtime.
What is the best way to achieve the same?
Thanks
Type: Posts; User: krishmn; Keyword(s):
I need to read/refresh some of the spring bean configurations from mongodb during runtime.
What is the best way to achieve the same?
Thanks
I've resolved this by adding custom read/write converters for CurrencyUnit and hooking into MongoMappingConverter.
I was using 1.0.0.M4 and having a pojo with a field called unitPrice mapped to org.joda.money.Money type.
I was able to save the data successfully, but while retrieving the same pojo spring throws...
Following exception occured while pointing to 1.0.0.M5 version.
The POM for org.springframework.data:spring-data-commons-core:jar:1.2.0.BUILD-SNAPSHOT is missing, no dependency information...
I'm trying to fetch the outer documents( BetInfo's) given the list of "betCategories" using the following DAO.
List<BetInfo> findByBetCategoriesIn(List<BetCategory> betCategories);
It is not...
Hi,
We are trying to integrate CXF with Spring security for webservices and using UserNameToken Profile for WS-Security.
Right now I'm writing the WSCallbackHandler to handle the...