Here is the Main java code that loads the Application Context with a
GroovyClassLoader. Since the ClassLoader is defined it seems expected
that hibernate will use the same Classloader to load its...
Type: Posts; User: pdemilly; Keyword(s):
Here is the Main java code that loads the Application Context with a
GroovyClassLoader. Since the ClassLoader is defined it seems expected
that hibernate will use the same Classloader to load its...
Hi,
I have a GroovyClassLoader as my default class loader of the ApplicationContext. I have tested that it works fine by creating beans whose class are groovy files without using <lang:groovy> tag...
The problem seems to be that everytime a new groovy class loader is created everytime getScriptedObject of GroovyScriptFactory is called
public Object getScriptedObject(ScriptSource...
Hi,
I am trying to incorporate groovy into my java application, via the spring framework. The problem I am experiencing is that classes loaded this way cannot reference each other as they are...
Thank you both. I was missing a common-logging.properties file. Adding this line to it fix all my Logging problems.
org.apache.commons.logging.Log = org.apache.commons.logging.impl.Log4JLogger
Hi,
I am trying to setup logging but can't figure out where to put the log4j.properties file.
I am using Eclipse and right now my little project has a src folder for sources and a bin folder...
Hi,
In iBatis there is a PaginatedList that permits to split a long query in chunk. From reading the code it doesn't seem very optimized (it ignores already read records before reading next...
Has anybody have any experience with DualRPCserver and Spring?
http://www.retrogui.com/cgi-bin/wiki_retrogui.pl
I am planing on using it for remoting since it supports services on both side of...
I am rewriting a legacy application using the spring framework. The legacy database is a c-isam cobol filesystem with a somewhat working JDBC driver (It accepts only one connection for the whole...
I am rewriting a legacy application using spring framework. It helped me a lot in separating better all the different layer of the application.
However I have a question. Most of the end-user...
I have a funky database (actually a JDBC/ODBC driver to an ISAM file based dataset) which doesn't like repeated open / closure of DB connections. After a while the servers send an error messages...
Geoff,
You are right. I missed changing those maps to 2.0 and was still using the old model. Thanks for pointing that out. Now it works as expected.
Thanks
Pascal
Working with the debugger I found a possible bug in XmlSqlMapClientBuilder. According to the DTD used by Ibatis 2.0.8 the statement of a sqlMap is now called mapped-statement. However the method...
I am trying to use iBatis 2.0.8 with SpringFramework 1.1.3. I created an ApplicationContext file as follow:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD...
I would like to write a simple client-server invoicing application. On the server I will have my database (MySQL, Postgresql, whatever) and the client will access it using remoting. The client will...
Hi,
I am new to all those technologies so excuse my ignorance. I am in the process of rewriting a legacy cobol application in Java. Since it is a fairly large financial application (at least for...