问题描述
我正在使用Struts2.在每个页面执行开始时,我都使用拦截器创建数据库连接.
I'm using Struts 2. Using an interceptor, I create a database connection at the start of each page execution.
例如,如果用户转到"myAction.do",它将创建数据库连接,然后调用myAction.do
方法.
So for example, if a user goes to "myAction.do", it will create the database connection and then call myAction.do
method.
我现在正在寻找的是拦截器或其他任何在页面执行后自动调用方法的方法,这将关闭数据库连接.
What I'm looking for now is an interceptor or any other way to automatically call a method after the page execution, which will close the database connection.
有可能吗?
推荐答案
在拦截器中,您可以编写预处理和后处理逻辑.
In interceptor you can write pre processing and post processing logics.
预处理逻辑将在操作执行之前执行,并且动作执行后执行后处理逻辑.
Pre processing logic will execute before the action executes andpost processing logic executes after the action executes.
在invocation.invoke();
之后将要执行的所有内容,将在执行操作后执行
Whatever you will write after invocation.invoke();
that will execute after executes action
这篇关于页面执行后运行的Struts 2拦截器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!