摘要:
1.今天主要看了下滚动条的实现具体代码如下: ... 阅读全文
摘要:
1.看《重构-改善既有代码的设计》pdf 阅读全文
摘要:
今日工作任务:1.更新客户代码合并提交到我们代码库2.理解feizhi补上的单元测试代码,针对MnPriceApprovalForm的3.额外有时间学习下单元测试的概念salesforce中apex代码的测试流程。1.定义测试类,注明@isTest注解@isTestpublic class MnPr... 阅读全文
摘要:
1.导出.csv格式文件:其中会遇到中文乱码问题,会直接生成book.csv文件 Name {!a.book.name} BookController如下:public class BookController { public ApexPages.Sta... 阅读全文
摘要:
好久没写日记了,今天就来记下近期的境况吧。 2015.3.16日来的公司,有2周多了。公司现在有两个项目,一个就是公司自己的项目(用到了比较前沿的一些技术,有:nosql(Mongodb)、AngularJS、Spring、JPA、Spring-data等等技术。而另一个项目则是在Salesf... 阅读全文
摘要:
1.Getter Methods Getter methods return values from a controller. Every value that is calculated by a controller and displayed in a page must have a c... 阅读全文
摘要:
1.mybatis与spring整合的缓存问题: 在mybatis中的配置文件中用了这个配置出现了后台得到的数据与数据库中的数据不一致。这是将value设成false就解决了这个问题,原因就是跟缓存有关 阅读全文
摘要:
1.将这个结果弄成下面的结果sql写法为:select room_attr_id, room_id, attr_id, group_concat(attr_value separator ',') as attr_value from rz_rooms_attr where room_id=31 g... 阅读全文