That thread deals with client side integration. What I'm interested in are techniques used to inject resources into a GWT service.
[Update]
Nope. Actually, this reference thread does answer my...
Type: Posts; User: jominor; Keyword(s):
That thread deals with client side integration. What I'm interested in are techniques used to inject resources into a GWT service.
[Update]
Nope. Actually, this reference thread does answer my...
This may be the more appropriate area for this question
I've looked at quite a bit on the subject, but I haven't found the answer to one question. What is considered the best way to load a Spring...
I've looked at quite a bit on the subject, but I haven't found the answer to one question. What is considered the best way to load a Spring context, like the ApplicationContext into a GWT remote...
Already in. I quickly realized that the DFP as you stated obviates the need for both the context and implementing the interface leaving me with a nice generic Filter.
Again, thanks for the assist...
I'll take a look at it! Thank you.
Besides using a static variable, are there any best practice ways of creating a WebApplicationContext in a Servlet filter, something similar perhaps to uses the Struts action setServlet call to get...
Use the LinkedHashSet(list) to maintain both order and uniqueness
Hmmm...Perhaps that around would work better after all...
What I would like to do is catching of certain exceptions, I would like to retry the operation a certain number of times at certain intervals.
Is there anyway to have retry an operation using the...
Actually, that's good to know also. You never know when this won't be a web app!
Thanks again.
Hmmm... It seems that the bean def needed to be
<bean id="placeHolderConfig" class="org.springframework.beans.factory.config.PropertyOverrideConfigurer">
<property...
Hmmm... It seems that the bean def needed to be
<bean id="placeHolderConfig" class="org.springframework.beans.factory.config.PropertyOverrideConfigurer">
<property...
I'm using this def
<bean id="placeHolderConfig" class="org.springframework.beans.factory.config.PropertyOverrideConfigurer">
<property...
How about mentioning that Oracle themselves provide the Toplink support in Spring. I used both that and the Bea support to sell Spring's use in our framework to one of our customers.
You can also...
One more question, what is the recommendation? Should I contine to use the AOP Alliance stuff or move over to the AspectJ APIs?
Thanks!
Will there be any? Currently, I use the AOP Alliance APIs in our applications. What effect, if any, will the AspectJ integration have?
I've now successfully deployed two applications based on the Spring Framework. I am constantly amazed at this software and the significant improvements I've made in application creation.
Now that...
I'm trying to use Hibernate's lazy instantiation using Spring's Hibernate convenience classes. At what points do Spring open/close the Hibernate session?
Do you have logging turned on? I had a pull of data that went from about 5 seconds to instant when I turned off hibernate logging using the following
##########################################
# ...
I have a persistence package that has a dao package for interfaces and a hibernate package that has hibernate implementations of those DAO interfaces.
Persistence also contains PersistenceService...
Damn! That's fast! Thank you, Colin.
Guys, I hope you never tire of hearing this, but this entire project is simply incredible. Frankly, I am in awe of this entire effort.
I just started...
I'm trying to create a class that looks like this
Class MyClass
{
String pageName;
Map pageMap
}
The pageMap Map is a <String,List> where the list is just a list of Strings....
Couldn't you wrap the class? Or wrap it and have the wrapper class implement the same interface?
I actually tried that after seeing the code and it actually work for the reason you mentioned. My only issue probably may just be one of semantics. With the Action, setting the webAppContext...
I'm afraid I misspoke. It wasn't that setServlet wasn't called, I just need(or at least want) the context at form creation time. Ultimately, I want my bean created after the form is created, but...