导航

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 61 下一页

2014年9月1日

摘要: 要在ftl页面中使用contextPath,需要在viewResolver中做如下配置(红色部分): 这样,在页面中使用${rc.contextPath} 就可获得contextPath。注意,这里的rc对应的是org.springframework.web... 阅读全文

posted @ 2014-09-01 10:53 eastson 阅读(1274) 评论(0) 推荐(0) 编辑

2014年8月15日

摘要: 要想使用Freemarker支持的自定义方法,需要实现freemarker.template.TemplateMethodModel接口,然后将方法对象放入到Freemarker的数据模型中,这样在ftl文件中便可以像使用Freemarker内置方法一样使用该方法了。import java.util... 阅读全文

posted @ 2014-08-15 11:43 eastson 阅读(413) 评论(0) 推荐(0) 编辑

摘要: 默认情况下,freemarker的变量必须有值,如果没有被赋值的变量在页面上使用就会抛出异常,出错的信息都会显示在页面上。解决办法:方法一、我们可以在页面上使用freemarker变量时 以${xxx?if_exists} 来处理空值的情况,或采用默认值的方法避免此类问题。但每个freemarker... 阅读全文

posted @ 2014-08-15 10:29 eastson 阅读(5367) 评论(0) 推荐(0) 编辑

2014年8月11日

摘要: FreeMarker的模板文件并不比HTML页面复杂多少,FreeMarker模板文件主要由如下4个部分组成:1,文本:直接输出的部分2,注释:格式部分,不会输出3,插值:即${...}或#{...}格式的部分,将使用数据模型中的部分替代输出4,FTL指令:FreeMarker指定,和HTML标记类... 阅读全文

posted @ 2014-08-11 15:27 eastson 阅读(194) 评论(0) 推荐(0) 编辑

摘要: spring通过在web.xml 中配置ContextLoaderListener 来加载context配置文件,在DispatcherServlet中也可以来加载spring context配置文件,那么这两个有什么区别呢。ContextLoaderListener中加载的context成功后,s... 阅读全文

posted @ 2014-08-11 14:43 eastson 阅读(203) 评论(0) 推荐(0) 编辑

2014年8月8日

摘要: 自定义FreeMarkerView的目的是为了放一些公共的变量到FreeMarker模版里面.spring-context.xml: --> --> 0 ... 阅读全文

posted @ 2014-08-08 16:09 eastson 阅读(783) 评论(0) 推荐(0) 编辑

摘要: 建表语句:DROP TABLE IF EXISTS `t_company`;CREATE TABLE `t_company` ( `companyId` int(10) unsigned NOT NULL AUTO_INCREMENT, `companyName` varchar(30) NOT... 阅读全文

posted @ 2014-08-08 12:00 eastson 阅读(329) 评论(0) 推荐(0) 编辑

摘要: 通常定义Controller时一般都定义成public:package net.mingyang.modules.system;@Controller@RequestMapping("/control/system/config")public class ConfigController{ ... 阅读全文

posted @ 2014-08-08 10:08 eastson 阅读(305) 评论(0) 推荐(0) 编辑

摘要: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'configController' for bean class [net.mingy... 阅读全文

posted @ 2014-08-08 09:38 eastson 阅读(8809) 评论(0) 推荐(1) 编辑

摘要: org.hibernate.AnnotationException: No identifier specified for entity: net.mingyang.modules.system.ConfigGroup org.hibernate.cfg.InheritanceState.d... 阅读全文

posted @ 2014-08-08 08:58 eastson 阅读(302) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 61 下一页