
ssm框架
李云龙Gavin
这个作者很懒,什么都没留下…
展开
-
Spring 可能会用到的一些功能
private static ScheduledExecutorService mScheduledExecutorService = Executors.newScheduledThreadPool(1); mScheduledExecutorService.scheduleWithFixedDelay(new Runnable() { public void run() { }, 10*1,60, SECONDS);原创 2020-06-01 17:50:27 · 162 阅读 · 0 评论 -
在使用ssm框架thymeleaf的使用中遇到的一些坑
在使用el表达式中 1.ssm框架中,使用springmvc进行跳转的页面才可以使用el表达式取到数据,如果通过a标签或者其他方式跳转通过el表达式是取不到值的. 2.在ssm中ModelAndView通过addObject()方法中 数据是保存到了request作用域里面. 3.保存到request作用域里面的数据是可以直接通过el表达式调用${obj} 4.保存在session作用域里面的数据...原创 2019-05-23 14:01:22 · 1198 阅读 · 0 评论