Custom spring scopes ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T03:46:03Z http://stackoverflow.com/feeds/question/450557 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/450557/custom-spring-scopes 1 Custom spring scopes ? krosenvold 2009-01-16T14:33:10Z 2009-06-09T18:23:43Z <p>Anyone know of any other custom spring scopes than <a href="http://www.springbyexample.org/examples/custom-servlet-context-scope-module.html" rel="nofollow">Servlet Context Scope</a> and <a href="http://www.springbyexample.org/examples/custom-thread-scope-module.html" rel="nofollow">ThreadScope</a> ? </p> <p>If you've made some closed-source custom scope I'd really also be interested in hearing what it does and how it worked out for you. (I'd imagine someone would make a WindowScope in a desktop app ?)</p> <p>I'm open to all use cases, I'm looking to expand my horizon here.</p> http://stackoverflow.com/questions/450557/custom-spring-scopes/450614#450614 1 Answer by Andrzej Doyle for Custom spring scopes ? Andrzej Doyle 2009-01-16T14:52:46Z 2009-01-16T14:52:46Z <p>We implemented our own custom Spring scope. A lot of our code works at a relatively low level, close to the database, and we maintain a conceptual level on top of that with its own object model of data sources, links, attributes etc.</p> <p>Anyway, a lot of beans require a so-called StorageDictionary (an encapsulation of this object graph) to do their work. When we make non-trivial changes to the object graph, the dictionary sometimes needs to be blown away and recreated. Consequently, we implemented a custom scope for objects that were <em>dictionary scoped</em>, and part of the invalidation of a given dictionary involves clearing this custom scope. This lets Spring handle a nice form of automatic caching for these objects. You get the same object back every time up until the dictionary is invalidated, at which point you get a new object.</p> <p>This helps not only with consistency but also allows the objects themselves to cache references to entities within the dictionary, safe within the knowledge that the cache will be valid for as long as they themselves are retrievable by Spring. This in turn lets us build these as immutable objects (so long as they can be wired via constructor injection), which is a very good thing to do anyway wherever possible.</p> <p>This technique won't work everywhere and does depend heavily on the characteristics of the software (e.g. if the dictionary was modified regularly this would be horribly inefficient, and if it was updated never this would be unnecessary and slightly less efficient than direct access). However, it has definitely helped us pass off this management of lifecycle to Spring in a way that is conceptually straightforward and in my opinion quite elegant.</p> http://stackoverflow.com/questions/450557/custom-spring-scopes/451341#451341 2 Answer by cliff.meyers for Custom spring scopes ? cliff.meyers 2009-01-16T17:45:49Z 2009-01-16T17:45:49Z <p>In my company we've created two custom scopes, one that will use Thread or Request and another that will use either Thread or Session. The idea is that a single scope can be used for scoped beans without having to change configuration based on the execution environment (JUnit or Servlet container). This also really comes in handy for when you run items in Quartz and no longer have a Request or Session scope available.</p> http://stackoverflow.com/questions/450557/custom-spring-scopes/477686#477686 1 Answer by cletus for Custom spring scopes ? cletus 2009-01-25T13:31:34Z 2009-01-25T13:31:34Z <p><a href="http://www.oracle.com/technology/products/coherence/index.html" rel="nofollow">Oracle Coherence</a> has implemented a <a href="http://wiki.tangosol.com/display/INCUBATOR/Data+Grid+Beans" rel="nofollow">datagrid scope for Spring beans</a>. To sum it up:</p> <blockquote> <p>A <strong>Data Grid Bean</strong> is a proxy to a java.io.Serializable Bean instance that is stored in a non-expiring Coherence Distributed Cache (called near-datagridbeans).</p> </blockquote> <p>Never used them myself but they seem cool.</p> http://stackoverflow.com/questions/450557/custom-spring-scopes/971703#971703 0 Answer by Eliot Sykes for Custom spring scopes ? Eliot Sykes 2009-06-09T18:23:43Z 2009-06-09T18:23:43Z <p>Background:</p> <p>I work on a single web app that runs 4 different web sites under the same servlet context. Each site has its own domain name, e.g. www.examplesite1.com, www.examplesite2.com, etc.</p> <p>Problem:</p> <p>Sites sometimes require their own customised instance of a bean from the app context (usually for customised display of messages or formatting of objects). </p> <p>For example, say sites 1 and 2 both use the "standardDateFormatter" bean, site 3 uses the "usDateFormatter" bean and site 4 uses the "ukDateFormatter" bean.</p> <p>Solution:</p> <p>I'm planning on using a "site" scope.</p> <p>We have a Site enum like this:</p> <pre><code>enum Site { SITE1, SITE2, SITE3, SITE4; } </code></pre> <p>Then we have a filter that stores one of these Site values in the request's thread using a ThreadLocal. This is the site scope's "conversation id".</p> <p>Then in the app context there'd be a bean named "dateFormatter", with 'scope="site"'. Then, wherever we want to use a date formatter, the correct one for the user's current site will be used.</p>