fuzzydb
fuzzydb copied to clipboard
fuzzydb is a fuzzy matching database engine capable of providing human-like search results that make life much easier for users of websites searching for things like cars, houses, people and jobs.
This would create a Mockito mock and place it in the context to be autowired everywhere. ``` @Autowired @Mock private DataOperations mockToProvideToSpringContext; ``` This would spy (where possible) on a...
We want to be able to do something like: ``` @Autowired private DataOperations dataOps; @Transactional(readonly=true) public void getSomeData(Model model) { ResultSet results = dataOps.query( resultClass, searchSpec, numResults ); // Stick...
See http://blog.springsource.com/2011/02/24/custom-project-templates-in-springsource-tool-suite/
We need a sensible strategy to deal with this, as it's a valid user scenario during development, but in production is a bigger challenge. Ultimately, supporting a data mapping persistence...
http://wiki.msgpack.org/display/MSGPACK/Format+specification
See http://blog.42.nl/articles/leveraging-the-spring-mvc-3.1-handlermethodargumentresolver-interface/ for one way to simplify CRUD. Could provide these as building blocks for many apps as part of Spring module.
Want to be able to see documentation on configuration for each class. Perhaps can find some XML tools to generate schema from the classes.
Neo is a good parallel for us: http://digitalstain.blogspot.com/2010/12/towards-neo4j-connector-implementation.html
Spring Data Commons supports dynamic finders for extenders of Repository. We should consider whether this is a valid goal for a simpler API. The existing query infrasstructure via the com.wwm.expression...