Does spring have a way of creating tables from a DDL script when the application context is loaded on startup? I'd like to be able to do this for unit tests within hypersonic. I know about using...
Type: Posts; User: springland; Keyword(s):
Does spring have a way of creating tables from a DDL script when the application context is loaded on startup? I'd like to be able to do this for unit tests within hypersonic. I know about using...
Are you saying that the real selling point of using spring on the client side is for dependency injection using an external configuration (ie. context.xml files)?
That's a tough sell! I can...
I had posted this before, but never got a response.... anyone care to comment?
Recently I've been learning AspectJ and find it extremely powerful. It seems that all the Dependency Injection and...
Recently I've been learning AspectJ and find it extremely powerful. It seems that all the Dependency Injection and AOP I could ever imagine can be done with only a few lines of code! Just as a...
You probably need to look at org\springframework\richclient\samples\petclinic\PetClinicStandalone.java
If you are doing a standalone application you can do something like...
...
All, I've been looking through the samples and I'm having trouble starting the springframework in an applet when the applet is referenced as another singleton bean in Spring. I wanted to use...
I took a look at SingX. I was impressed. Haven't had a chance to look at JFace's TreeViewer.
For those of you that know, what do these offer above and behond the...
I've used a JTree before. Just thought there might be an enhanced version that does more than JTree out-of-the-box. Sounds like there isn't.
Thanks
Does the Spring Rich Client Project have a prebuilt component that looks just like the Windows Explorer interface? I'm looking for a swing panel that users can add/remove/update nodes in a tree...
Does anyone know of any comparison studies between web frameworks that also use Spring? Specifically -> JSF, PHP, Struts, Tapestry and Spring MVC.
I don't know that this is the best solution to your problem... but could you not setup a ServletContextListener that initializes your BusinesServiceFactory with a ServletContext when the application...
The company I work for uses SiteMinder from Netegrity to do Single Sign On. Since it was a no brainer to put up a web filter that checks to see if the user was logged in and then set the UserContext...
I can't offer you a nice tutorial without web integration, but I can point you to an example proived within the spring download that does NOT use the web tier.
Take a look at...
It appears as though PHP can be setup within a servlet container. With so many projects using PHP, has anyone had any luck with integrating PHP with Spring?
Does anyone know why this forum was built with PHP? Was Spring also used to build this forum? If not, why not? If so, how so?
Thanks!
I wanted to find out how everyone else creates state in their stateless services.
Here's how I do it....
On the web tier we have session scope. In the web session scope I cache a "User" domain...
manifoldronin - the solution you suggest looks pretty clean on the surface.
Do we have any success stories with this solution?
Do you mean something like Middlegen-Hibernate-r5? Where it reads some database tables and automatically creates the hbm and java files for you?
Does anyone know if it is possible to use dependency injection on hibernate entities?
I know I can create a DAO that returns a list of domain entities from a HibernateTemplate, but what if I want...