7
votes
7answers
489 views
Is a lock required with a lazy initialization on a deeply immutable type?
If I have a deeply immutable type (all members are readonly and if they are reference type members, then they also refer to objects that are deeply immutable).
I would like to implement a lazy …
6
votes
2answers
813 views
NHibernate session management and lazy loading
I am having a heck of a time trying to figure out my session management woes in NHibernate. I am assuming that a lot of my trouble is due to lack of knowledge of IoC and AOP concepts; at least that is …
6
votes
6answers
688 views
Lazy loading - what’s the best approach?
I have seen numerous examples of lazy loading - what's your choice?
Given a model class for example:
public class Person
{
private IList<Child> _children;
public IList<Child> …
6
votes
4answers
675 views
Repository Pattern: how to Lazy Load? or, Should I split this Aggregate?
I have a domain model that has the concept of an Editor and a Project.
An Editor owns a number of Projects, and a Project has not only an Editor owner, but also a number of Editor members. …
5
votes
3answers
440 views
What is the proper way to inject a data access dependency for lazy loading?
What is the proper way to inject a data access dependency when I do lazy loading?
For example I have the following class structure
class CustomerDao : ICustomerDao
public Customer GetById(int id) …
4
votes
1answer
100 views
Lazy/Eager loading strategies in remoting cases (JPA)
I'm running into LazyLoading exceptions like the most people who try remoting with an ORM.
In most cases switching to eager fetching solves the problem (Lazy Loading / Non atomic queries / Thread …
3
votes
3answers
55 views
How do I implement toString() in a class that is mapped with Hibernate?
I have an instance of a class that I got from a Hibernate session. That session is long gone. Now, I'm calling toString() and I'm getting the expected LazyInitializationException: could not initialize …
3
votes
3answers
95 views
Checking existence of lazy loaded child without getting/loading in Fluent NHibernate
This should be easy, but I can't seem to figure it out... How can I check if a child on an entity exists without actually getting or fetching it? The child is lazy loaded right now..
so I have two …
3
votes
1answer
364 views
How to conditionally assign ActionController::Base.session in rails 2.3.3
I have a rails app that has the following content in the config/initializers/session_store.rb file:
ActionController::Base.session = {
:key => '_app_session',
:secret => 'a …
3
votes
4answers
93 views
Why lazy instantiation of the MessageResourcesFactory in Struts 1.2.7?
Hi,
Since there is the Double-checked locking issue so we have to use synchronization to guarantee the concurrent access to the following method (org.apache.struts.util.MessageResources class) :
…
3
votes
3answers
146 views
How can I add an element to a lazily-loaded collection in Hibernate without causing the collection to load?
What it says on the tin; I want to modify a collection in Hibernate without forcing the collection to load, since it is a large volume of data (~100,000 records, monotonically increasing).
Right …
3
votes
3answers
301 views
Data Transfer Objects and transactional service methods
Is there any truly practical way to avoid using DTOs, when passing data through Hibernate-backed transactional service methods? In other words, are DTOs the only non-hacky solution to avoiding lazy …
3
votes
2answers
479 views
Lazy Loading DTO fields in Spring
I have a project that is using Spring and is broken down into a couple dozen DAOs and associated DTOs. I'm using JdbcTemplate, but not much else, as it's exactly the level of abstraction I'm happy …
3
votes
4answers
1k views
LazyInitializationException even though openSessionInViewInterceptor
Hello!
I have a problem with LazyInitializationException even though I'm using openSessionInViewInterceptor. I've read so many posts about that topic and I've tried three or four different approaches …
3
votes
2answers
915 views
Help with ActiveRecord exception “Failed to lazily initialize a collection - no session”
I am writing a web app using Castle ActiveRecord, and I keep getting this exception whenever I try to access a lazy loaded list of related objects. Here is my code:
using(new SessionScope())
…
