2017年12月25日
摘要: @Controller和@RestController的区别? 官方文档: @RestController is a stereotype annotation that combines @ResponseBody and @Controller. 意思是: @RestController注解相当 阅读全文
posted @ 2017-12-25 10:08 巨象 阅读(249) 评论(0) 推荐(0) 编辑
摘要: https://docs.open.alipay.com/58/103590/ 阅读全文
posted @ 2017-12-25 10:05 巨象 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 第一、Logger.getLogger()和LogFactory.getLog()的区别 1.Logger.getLogger()是使用log4j的方式记录日志; 2.LogFactory.getLog()则来自apache的common-logging包。 举例说明: 基于common-loggi 阅读全文
posted @ 2017-12-25 10:02 巨象 阅读(6532) 评论(0) 推荐(1) 编辑
摘要: public class SimpleDateFormat extends DateFormat SimpleDateFormat 是一个以国别敏感的方式格式化和分析数据的具体类。 它允许格式化 (date -> text)、语法分析 (text -> date)和标准化。 SimpleDateFo 阅读全文
posted @ 2017-12-25 09:54 巨象 阅读(274) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/joymod/article/details/72540802 阅读全文
posted @ 2017-12-25 09:51 巨象 阅读(1535) 评论(0) 推荐(0) 编辑
摘要: 开发工作中如果有任何不会的问题可咨询(永久有效): 微信号: Lifetime19931023 或者二维码: class=”pull-right”:右对齐下拉菜单 list-group-item:列表组,控制列表,以及添加列表徽章 1、列表组 列表组是Bootstrap框架新增的一个组件,可以用来制 阅读全文
posted @ 2017-12-25 09:48 巨象 阅读(10600) 评论(0) 推荐(0) 编辑
  2017年12月22日
摘要: 标签用于格式化数字,百分比和货币。 如果type属性为百分比或数字,则可以使用多个数字格式属性。maxIntegerDigits和minIntegerDigits属性允许您指定数字的非分数部分的大小。如果实际数字超过maxIntegerDigits,则数字将被截断。 还提供了属性以允许您确定应使用多 阅读全文
posted @ 2017-12-22 17:32 巨象 阅读(951) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/1709ad8077cdb04634c4f017.html 如何操作,并找到需要更改的精灵图位置,进入到页面,点击F12,点击箭头,点击加号然后再右下方的框里,找到精灵图的图片,最右侧就会有图片所在文件,然后更改图片便是 阅读全文
posted @ 2017-12-22 17:15 巨象 阅读(2100) 评论(0) 推荐(0) 编辑
摘要: DWZ的树结构是按,的嵌套格式构成,最顶级的以class=”tree”标识。 treeFolder, treeCheck, expand|collapse则为可选的。 treeFolder:在所有树节点前加上Icon图标。 treeCheck:在所有树节点前加上checkbox, expand表示树的所有第一级节点默认是展开状态 collapse则表示所有第一级节点默认为折叠状态(... 阅读全文
posted @ 2017-12-22 17:09 巨象 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 当 BeanDefinition 注册完毕以后, Spring Bean 工厂就可以随时根据需要进行实例化了。对于 XmlBeanFactory 来说,实例化默认是延迟进行的,也就是说在 getBean 的时候才会;而对于 ApplicationContext 来说,实例化会在容器启动后通过 Abs 阅读全文
posted @ 2017-12-22 17:06 巨象 阅读(410) 评论(0) 推荐(0) 编辑