jfinal spring 整合 集成 事物 spring-jfinal

1、web.xml


?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- 推荐使用 -->
< context-param >
     < param-name >contextConfigLocation</ param-name >
     < param-value >WEB-INF/spring.xml</ param-value >
</ context-param >
< listener >
     < listener-class >org.springframework.web.context.ContextLoaderListener</ listener-class >
</ listener >
< filter >
     < filter-name >jfinal</ filter-name >
     < filter-class >com.jfinal.core.SpringJFinalFilter</ filter-class >
     < init-param >
         < param-name >configClass</ param-name >
         < param-value >demo.run.JfinalConfig</ param-value >
     </ init-param >
</ filter >
< filter-mapping >
     < filter-name >jfinal</ filter-name >
     < url-pattern >/*</ url-pattern >
</ filter-mapping >


以上通过 SpringJFinalFilter 过滤器加载 spring 。 其中 JfinalConfig 自动注册 springbean(JfinalConfig 中可以使用 注解注入属性哦,或者 实现 ApplicationContextAware  接口自动注入 ApplicationContext)。

初始化顺序(不配置 ContextLoaderListener 的情况下): SpringJFinalFilter -> ApplicationContext -> JFinal -> JFinalConfig ... (其他 照旧 ) . 初始化顺序(配置 ContextLoaderListener 的情况下)。 ApplicationContext -> SpringJFinalFilter -> JFinal -> JFinalConfig ... (其他 照旧 ) .

2、JFinalConfig


?
1
2
3
4
5
6
7
8
public class HelloJFinalConfig  extends JFinalConfig {
 
     @Autowired
     public void setApplicationContext(ApplicationContext ctx) {
         System.out.println( "HelloController attr[ApplicationContext] 已注入。。" );
     }
     ...
}


其中 HelloJFinalConfig 自动注入 springbean , scope = "singleton" .

3、Controller


?
1
2
3
4
5
6
7
public class HelloController  extends Controller {
 
     @Autowired
     public void setApplicationContext(ApplicationContext ctx) {
         System.out.println( "HelloController attr[ApplicationContext] 已注入。。" );
     }
}


其中 Controller 自动注入 springbean , scope = "prototype" 原因是 jfinal 也是每次请求创建实例 .

4、页面使用 ApplicationContext

添加 ContextSpringHandler 就可以了。使用方式可以参照 ContextPathHandler。

5、spring 事物管理


?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
< bean id = "druidDataSource" class = "com.alibaba.druid.pool.DruidDataSource" >
     < property name = "username" value = "${db.userName}" />
     < property name = "password" value = "${db.passWord}" />
     < property name = "url" value = "${db.jdbcUrl}" />
     < property name = "driverClassName" value = "${db.driverClassName}" />
     < property name = "initialSize" value = "${db.initialSize}" />
     < property name = "maxActive" value = "${db.maxActive}" />
     < property name = "minIdle" value = "${db.minIdle}" />
</ bean >
<!-- spring 事物管理 ,ActiveRecordPlugin可以获得此 dataSource 可以把事务交给spring 管理 -->
< bean id = "dataSourceProxy" class = "org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy" >
     < property name = "targetDataSource" ref = "druidDataSource" />
</ bean >
 
<!-- ================================事务相关控制================================================= -->
< bean name = "transactionManager" class = "org.springframework.jdbc.datasource.DataSourceTransactionManager" >
     < property name = "dataSource" ref = "dataSourceProxy" ></ property >
</ bean >
 
< tx:advice id = "txAdvice" transaction-manager = "transactionManager" >
     < tx:attributes >
         < tx:method name = "delete*" propagation = "REQUIRED" read-only = "false" />
         < tx:method name = "insert*" propagation = "REQUIRED" read-only = "false" />
         < tx:method name = "update*" propagation = "REQUIRED" read-only = "false" />
 
         < tx:method name = "find*" propagation = "SUPPORTS" />
         < tx:method name = "get*" propagation = "SUPPORTS" />
         < tx:method name = "select*" propagation = "SUPPORTS" />
     </ tx:attributes >
</ tx:advice >
 
<!-- 把事务控制在Service层 -->
< aop:config >
     < aop:pointcut id = "pc" expression = "execution(public * demo.service.*.*(..))" />
     < aop:advisor pointcut-ref = "pc" advice-ref = "txAdvice" />
</ aop:config >


以上是 xml 配置方式。 重点是在 ActiveRecordPlugin 中注入 代理数据源。

6、基于 SpringPlugin 的 加载 spring .


?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public class JFinalConfigMe  extends JFinalConfig {
     private ApplicationContext ctx;
     
     // lazy (原因是 jfinal 先实例化 JFinalConfig 在 JFinal.init 初始化相关配置 )
     public ApplicationContext getApplicationContext(){
         if (ctx ==  null ) ctx = WebApplicationContextUtils.getWebApplicationContext(JFinal.me().getServletContext());
         return ctx;
     }
 
     @Override
     public void configConstant(Constants me) { }
     @Override
     public void configRoute(Routes me) { }
     @Override
     public void configPlugin(Plugins me) {
         me.add( new SpringPlugin(getApplicationContext()));
     }
     @Override
     public void configInterceptor(Interceptors me) { }
     @Override
     public void configHandler(Handlers me) { }
}


  • 可以使用 加载 WEB-INF 下的文件哦(需要配置 ContextLoaderListener) 推荐.
  • 如果不配置 ContextLoaderListener 使用 WEB-INF 下的文件 的 classpath:../**文件。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值