Lazy initialization is the tactic of delaying the creation of an object, the calculation of a value, or some other expensive process until the first time it is needed.
0
votes
0answers
19 views
Will javascript structure makes an ajax request faster?
Lets say I solve a common ajax problem (looping ajax and solving the async problem{not sure if this is a problem}). Like this.
var users = [{username: 'foo', email : 'foo@email'}, {username: 'bar', ...
0
votes
1answer
39 views
What is the proper way to lazy initialize an abstract property in Objective-C
// In super class:
@property (strong, nonatomic) Foo *foo;
// In sub class:
- (Foo *) foo
{
if(!super.foo) super.foo = [[Foo alloc] init];
return super.foo;
}
Does this make sense? Is it ...
1
vote
0answers
33 views
Spring Autowired Exception when a remote ejb is down
Hi,
I have a simple question that I am not able to solve.
I'm using Spring 3 to lookup Remote ejbs and I added lazy-init=true into bean definition because my application must starting
also if some ...
2
votes
1answer
73 views
hibernate LazyInitializing paradox
I have 3 Entities named, Discipline, DisciplineMembership, DisciplineManagement:
one Discipline has many DisciplineMemberships
one Discipline has many DisciplineManagements
a DisciplineManagement has ...
0
votes
3answers
151 views
Getting “could not initialize proxy - no Session” despite the fact I'm using a @Transactional annotation
I'm using Spring 3.1.1.RELEASE and Hibernate 4.1.0.Final. I'm getting a "could not initialize proxy - no Session" exception, despite the fact I'm wrapping the relevant method call in a @Transactional ...
0
votes
2answers
58 views
property doesn't set after lazy initialization objective-c
I have a BOOL property and at the start this property equals NO. I want to set this property to YES from the start of my program, but with opportunity to toggle it.
For this, I made this getter:
...
1
vote
1answer
46 views
Lazy initialization on static local data
I have the following code (part of it was omitted for simplicity)
header:
class DbgModuleMarker
{
public:
DbgModuleMarker( std::string name );
static std::ostream createStream( const ...
0
votes
0answers
48 views
strange list icons loading order (the last icons are first copies of the first, then overriden)
So basically I have a simple listview where each item consists of an Image and a text.
Everything works just fine but today I accidentally stumbled across something very strange.
I use lazy icon ...
0
votes
1answer
41 views
How to emphasize that the field is lazily initialized? [Java] [closed]
How to declare field which will be lazily initialized?
Should I use special naming convention for it?
Should I write a javadoc?
Is there any well-known annotation I can use to make it clear for a ...
4
votes
1answer
232 views
How to “eager load” a service in AngularJS? (instantiate it before its needed, automatically)
I'm trying to achieve a program structure like this:
The problem here is, when there is no apparent controller using the Features in the beginning, they are not instantiated and not registered in ...
1
vote
1answer
61 views
A number of services registering in another service that has no dependencies to them? (lazy-loading)
I want to have a servcie called FeatureRegistry with whom all features are registering. The registering features have a dependency on the FeatureRegistry (and not vice versa).
How i did it right now ...
1
vote
2answers
67 views
lazy initialization in hibernate
I am trying to learn Hibernate, I came through hibernate lazy initialization . I have a few clarifications regarding the lazy initialization.
First of all, What is so called Lazy initialization, what ...
2
votes
1answer
92 views
Automatically lazily resolving components in Castle Windsor
It is possible to lazily resolve a component in Castle Windsor by registering LazyOfTComponentLoader in the container and resolving a Lazy<T> as specified here:
container.Register(
...
0
votes
0answers
73 views
Implement a switch for Database Connection - Struts Spring Hibernate
I am developing a web app with struts, spring and hibernate. The spring injections are completely integrated all through the modules - action to service to dao. There are some issues with the DB and ...
0
votes
5answers
102 views
Clearing a lazy value from memory
I'm writing a JRPG style game at the moment, and am defining my items/enemies etc. in YAML files. Rather than load them at runtime (which is proving to be a pain in Scala, especially on Android) I ...
3
votes
3answers
66 views
Use a class decorator to implement late-initialization
I am using some classes which need to connect to databases. The connection is only really needed when performing a real action. I want to delay the connection phase until it is really needed. For ...
0
votes
1answer
33 views
Running scheduled method with lazy-init option of the class it belongs to
I have a class 'ABC' which gets initialized lazily at the time of context-up depending on some external parameters. Class has one method 'test' with @Scheduled annotation which does some scheduled ...
1
vote
3answers
447 views
Struts2 JsonResult Hibernate LazyInitialization - How to deserialize within a hibernate session
I'm trying to implement a hibernate session/transaction interceptor to avoid LazyInitializationException on json results in struts2, but I get this exception anyway:
245968 [http-8080-7] ERROR ...
2
votes
2answers
107 views
Python class member lazy initialization
I would like to know what is the python way of initializing a class member but only when accessing it, if accessed.
I tried the code below and it is working but is there something simpler than that?
...
3
votes
3answers
89 views
Why do we synchronize lazy singletons but not eager ones?
Typical lazy singleton:
public class Singleton {
private static Singleton INSTANCE;
private Singleton() {
}
public static synchronized Singleton getInstace() {
if(INSTANCE ...
0
votes
0answers
30 views
Django - lazy initialization of WSGIRequest.COOKIES
The following is from definition of Django's WSGIRequest class.
django.coreself.handlers.wsgi.py
class WSGIRequest(http.HttpRequest):
def __init__(self, environ):
#...
#...
...
0
votes
1answer
77 views
Is there a way to tell DWR to ignore a lazily-initialized field?
I'm using DWR 3.0.0-rc2, Spring 3.1.1.RELEASE,Hibernate 4.1.0.Final. I have this domain object …
@GenericGenerator(name = "uuid-strategy", strategy = "uuid.hex")
@Entity
@Table(name = "sb_product")
...
1
vote
0answers
76 views
JAXB generation - How to enforce the presence of a nested element (-> inner class) in the Java code
I am using JAXB to generate domain objects from an XSD of our own devising. In the relevant fragment of the XSD, given below, I have a nested preProcessing element within the parent Job element. This ...
4
votes
1answer
70 views
Lazy Initialization in NHibernate
If an entity is mapped with a relation to another entity as Lazy=False, but for a certain function I need to fetch them all Lazily, is that possible to do at run-time?
5
votes
1answer
99 views
Lazy initialization for free
In an article on the double-checked locking idiom, I found this quote:
One special case of lazy initialization that does work as expected without synchronization is the static singleton. When the ...
0
votes
0answers
659 views
Hibernate lazy loading: com.sun.jdi.InvocationException occurred invoking method
Kind of a most general question, But, never got the answer why it is happening,
my code works when my flow is from web application(spring and hibernate, java)!
But, fails when the same call come ...
0
votes
1answer
32 views
Lazy type registration using Unity App bloc
Is it possible to registe the type (container.RegisterType()) in such a way that the type gets registered in container when the type is asked for using container.Resolve<> Method.
I measn someting ...
1
vote
1answer
60 views
Lazy initialized field with changed ctor param?
This is the syntax for a Field which is lazy initialized.
public class MyClass
{
string _cat;
public MyClass(string Category)
{
_cat=Category;
}
MyExpensive _expensive;
...
1
vote
2answers
158 views
Lazy initialization using single check idiom
In Item 71 in 'Effective Java, Second Edition' the Double-check idiom and the single-check idiom are introduced for lazily instantiating instance fields.
Double-check idiom
private volatile ...
-2
votes
1answer
196 views
NHibernate Lazy loading lazy=extra no session or session was closed
I have a strange behaviour which I can't find any solution for days..
The behaviour I experience is the classic LazyInitializationException with no session or session was closed
which is usual when ...
2
votes
1answer
91 views
System.Lazy<T> and the System.Threading.LazyThreadSafetyMode Enumeration
Using C#/.NET 4.0, a Lazy<T> object can be declared as follows.
using System;
using System.Threading;
...
var factory = () => { return new object(); };
var lazy = new ...
2
votes
3answers
122 views
How do I implement lazy initialization for a member arraylist variable in Java?
I have a class with as private List<String> children; which is currently initialized in the constructor but this is not always needed and I want to initialize it only when some other function ...
0
votes
1answer
525 views
Hibernate Criteria get associated object for collection
I have the following Hibernate entities: User, Role and Team. There is also the UserTeamRole entity which is basically a connection between a User, his Role and the Team he is in:
@Entity
@Table(name ...
0
votes
0answers
102 views
Hibernate session closes inside EJB - Websphere 7
Hibernate session is automatically closed before the Container Managed Transaction is closed!
I have this strange issue while using Hibernate + EJB 2.1 in WebSphere 7.
Hibernate settings are:
...
0
votes
0answers
16 views
Why must I create a new uiimageView each time i run through the for loop?
Why does the first example not load any images onto the User Interface:
UIImageView *backgroundPicture;
for (int i = 0; i<18; ++i) {
if(!backgroundPicture)
{
backgroundPicture = ...
5
votes
1answer
173 views
Scala :: lazy value is null unless printed?
Given the trait (simplified)
trait A {
val eventStream: EventStream
val credentialsStorage = // something here
val userStorage = // something here
val crypto = // something here
...
...
0
votes
2answers
2k views
Hibernate could not initialize proxy - no Session
My code only retrieves all information related to the User,
SessionFactory sessionFactory = HibernateUtilities.configureSessionFactory();
Session session = sessionFactory.openSession();
UserDetails ...
1
vote
1answer
406 views
hibernate lazy loading exception in context Spring JSF application
I'm working on a web application based on Spring, Hibernate and JSF and I'm facing a known problem that was discussed before several times. see below :
17:42:11,970 ERROR [STDERR] 7 nov. 2012 ...
0
votes
2answers
144 views
Grails using spring security in SecurityFilters
In my grails application in production server I got some issues.
In securityFilters I'm injecting springSecurityService and at some point I'm asking something like
...
0
votes
1answer
79 views
lazily initialize a bean which is referenced by another lazy-init bean
I have a bean which is lazily-initialized and have a couple of arguments and properties to be set.
<bean id="abc" class="a.b.c.abc" lazy-init="true">
<constructor-arg ref="qwert" ...
5
votes
1answer
94 views
Is static init guaranteed NOT to run if class is not accessed?
I know there are many topics and resources about this, but I'm wondering about a very specific question (and it might take a very long time to check all sources for a definite answer).
I know that ...
13
votes
1answer
205 views
Why would I want to re-implement lazy?
I was reading the section on Lazyness [sic] over at Twitter's Effective Scala page, which includes this suggestion (emphasis is mine):
Use lazy fields for this purpose [computing and caching ...
0
votes
1answer
130 views
Lazy Initialization and Templates - Linker error
I've a general problem with my application.
I want to use lazy initialization with an Array class I've made, to improve performances; all works fine when all code is in a single *.h file, but compiler ...
3
votes
1answer
125 views
Cannot fetch @Any related entity due to LazyInitializationException
Could anyone help me how to deal with @Any relationship?
I have an interface InteractionParticipate which is implemented by everyone who wants to take a part in some kind of messaging interaction. A ...
0
votes
2answers
357 views
Spring and Hibernate: DAO Pattern. How to solve LazyInitializationException
I'm wondering: What is the point of FetchType.LAZY in one(many)-to-many using DAO Pattern?
It is basically useless? As soon as you are outside of your DAO (eg. were the actual work is done) you can't ...
1
vote
1answer
695 views
Hibernate 4. could not initialize proxy - no Session
I know this error is pretty common but I have searched and nothing seems to work.
I have a recursive relationship in Option entity (childrenOptions, parentOption - as lazy load), and I'm loading a ...
2
votes
2answers
118 views
How to make a CDI bean lazily initialized?
I am using Weld implementation of CDI 1.0 and I cannot find way how to make bean lazy like in Spring (using @Lazy or lazy-init in XML). Is there a way how to tell CDI's Injector not to initialize bean ...
3
votes
5answers
268 views
What is lazy instantiation
Is lazy instantiation about using less code but getting the same result? Surely this is generally a good thing to do (providing making the code to short / efficient doesn't damage ...
0
votes
3answers
178 views
How to use double checked lock to init a shared_ptr
(Assuming VC++ 2010: (1) can use /volatile:ms, (2) no std::atomic yet, (3) no thread-safe static variable initialization, (4) no std::call_once)
If I have a plain C pointer, I can impl the following ...
4
votes
4answers
140 views
Why can't I lazy-initialize static long array like this in java?
private static final long[] reservedFromIps;
static {
reservedFromIps = {0l, 167772160l, 1681915904l,
2130706432l, 2851995648l, 2886729728l, 3221225984l, 3227017984l, 3232235520l,
...







