Thanks for ur reply. Can I achieve the same using Spring IOC instead of AOP?
Type: Posts; User: sreepriyar; Keyword(s):
Thanks for ur reply. Can I achieve the same using Spring IOC instead of AOP?
Hi all ,
I ahve the following requirement. I need to be able to configure an exception and if the particular exception is caught I need the handler to be invoked.
Is this possible in Spring
...
Hi ,
Yes but I there is no answer. can someone please reply
Thanks
Hi all ,
How can the following be achieved in Spring?
I have to go through the resultSet and based on Business validations, I need to throw a custom exception, so that the layers above can map it...
Hi all,
I am using Spring JDBCTemplate at the DAO layer for database access and a delegate which invokes the DAO (again using Spring)
So any exceptions while inserting/update/delete etc gets...
Hi all,
Can some one please explain what are proxyINterfaces and when we can use them in Spring?
Thanks,
ok. Thanks Bill
Thanks Bill. Your knowledge helped resolve this issue.
But I have one question. The same code worked while using db2java-1.2.jar in Geronimov1.0 and does not work in Geronimo V1.1 and...
code that does not work:
jdbcTemplate.query(queryString.toString(),
new RowCallbackHandler() {
public void processRow(ResultSet rs)
throws SQLException {
while (rs.next()) {
String str =...
Hi.
I have added the exception info above and the code that works is somethig like this:
DAOFactory.getConnection()
then database operations:
then in finally I close the resultset and...
Hi all,
I am using JDBCTemplate and db2java-1.2.jar ,spring version spring-1.2.6.jar to connect to a db2 database.
I am getting the following exception when I try this...
Hi ,
I am using geronimo 1.0 server. In my login modules I use the ClassPathXmlApplicationContext to get a handle to the Delegate bean
At the point when I try to cast the Bean returned I get...