English 中文(简体)
How to pass SQLXML type to view in Spring MVC?
原标题:

In my webapp controller I m getting results from the db, which are of type java.sql.SQLXML. I want to pass it to the view to be returned verbatim (as XML).

The problem is, the data associated with SQLXML is released as soon as I leave JdbcTemplate call. How then should I pass the data to the view using a model?

问题回答

The simplest solution is to read the data out of the SQLXML object before you leave the JdbcTemplate invocation, and return the data as a byte[], String, DOM or whatever.

If that s not practical (e.g. the data is too large), then you ll need to take steps to keep the connection open beyond the scope of the JdbcTemplate call, and that means using transactions. By opening a transaction before calling JdbcTemplate, the connection becomes bound to that transaction, and will be kept open until you close the transaction. Unfortunately, keeping it open long enough for the view to be rendered requires some gymnastics.

Assuming you don t have transactions already setup, then you ll need a DataSourceTransactionManager bean in your context. You could then write a HandlerInterceptor to manage the transaction, keeping it open long enough for the view to render. Spring doesn t provide convenient interceptors for this out-of-the-box, like it does with JPA/Hibernate/etc, so you ll need to write your own HandlerInterceptor, something like this:

public class TransactionInterceptor extends HandlerInterceptorAdapter {

    private PlatformTransactionManager txManager;

    public void setTxManager(PlatformTransactionManager txManager) {
        this.txManager = txManager;
    }

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        TransactionStatus tx = txManager.getTransaction(new DefaultTransactionDefinition());
        request.setAttribute("tx", tx);
        return true;
    }

    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
        TransactionStatus tx = (TransactionStatus) request.getAttribute("tx");
        txManager.commit(tx);
    }
}

You then configure this interceptor to be invoked when a request calls your controller + view.





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签