`
文章列表
hover   $(".onenote").hover(function(e) { $(this).children(".newnote_right_icon").removeClass("div_beHidden"); e.stopPropagation(); }, function() { $(this).children(".newnote_right_icon").addClass("div_beHidden" ...
比如你又一个cell   在最左边有一个image, 最右边有一个button ,  当设备翻转成landscape时 希望这2个组件还是在cell的两端   这时要做的是设置这2个组件(UIView)的autoresizingMask属性 我希望翻转时右边的button还是在屏幕最右边 那么就要编程式的设置  button.autoresizingMask= UIViewAutoresizingFlexibleLeftMargin;     你也可以在IB 里面可视化的设置autoresizing , 但这里注意,你希望button总在最右边 就要选中IB中autoresi ...
jboss 报了如下的错   [CachedConnectionManager] Closing a connection for you.  Please close them yourself: org.jboss.resource.adapter.jdbc.jdk6.WrappedConnectionJDK6@785d564b   项目里面用了spring管理事物,  但用的是注释的方式,   我把注释 @Transactional(readOnly = false, propagation = Propagation.REQUIRED, rollbackFor = Exc ...
users 表和 auth_token_log表是一对多, 现在是把user的信息找出来 关联上一些 auth_token_log表的数据, 因为a表是多的一方, 要多他的数据进行一些条件匹配   这个sql目的是查出每个用户的最新的log记录     原始写法     SELECT users.first_name, users.email_address, users.tp_user_id, users.tp_username, auth_token_log.module_access, auth_token_log.created_date ...
hibernate的懒加载问题时常会困扰着我们, 今天发现了hibernate自身也提供一些解决办法 Hibernate.initialize(company.getUsers());  这样就加载了users集合 但不支持递归加载 it is not guaranteed that the elements INSIDE the collection will be initialized/materialized 假如这时session关闭了  会报错     真正解决懒加载还是应该在类的设计 xml文件的配置上下功夫   源码: /** * Force ini ...

jquery validate

    博客分类:
  • js
function(){ $("#register_company_admin_form").validate({ rules:{ "completeUserDTO.company.name" :"required", "completeUserDTO.company.address.address1": "required", "completeUserDTO.company.address.city": &quo ...
首先把jersey的相关jar放到WEB-INF/lib目录下   web.xml <servlet> <servlet-name>Jersey Spring</servlet-name> <servlet-class>com.sun.jersey.spi.spring.container.servlet.SpringServlet</servlet-class> <init-param> <param-name>com.su ...
 table view 修改背景   UIImageView *background = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background.jpg"]];     [[self tableView] setBackgroundView:background];     [background autorelease];         今天还出了一个错误  本来是array的对象 突然debug的时候发现变成NSCFString了, 网上查了下,说是内存方面的错误, 后 ...
常规的linux下的 用户和组 命令在mac os x 下不太灵,下面是网上找的 http://lmgtfy.com/?q=mac+os+x+add+users+to+group   在命令行:   dscl localhost 进入组目录 cd /Local/Default/Groups 使用ls 你就可以看到所有的group,  /Local/Default/Users 可以看到所有的用户 append groupname GroupMembership username groupname是你想添加的组, username是你的用户名 ...
之前写的 http://renxiangzyq.iteye.com/blog/1021112 集成spring axis2 的方法太过复杂,切为了达到需求要对生成的代码做多出修改,极不方便, 网上看了一些文章,发现其实集成axis2 spring很简单   假设你已经有了一个可以用的spring项目 你有一个类要发布成webservice public class MyService { public Person serviceA(String name, Integer age) { Person person = new Person(); ...
  WSDL 文档是利用这些主要的元素来描述某个 web service 的: 元素 定义 <portType> web service 执行的操作 <message> web service 使用的消息 <types> web service 使用的数据类型
网上很多教程包括apple自己的都是从一个core data的模板项目教起, 没有一个怎么在既有的项目上添加core data的方法(也许有,反正我没找到), 下面就是自己研究的添加core data的步骤, 我用的是mac os x 10.6.7, xcode4.0.0     1.  添加core data framework  xcode中选中项目根,在右边的面板中选中targets下面的项目名,再在右边选中 Build Phases, 再选中Link Binary with Libraries,  点加号添加core data 框架      在项目中找一个xx.pch的文件 ...
因为自己以前不小心 chmod 700 -R ~/ 导致自己目录里面的很多文件不能被系统索引到  搜索的时候不方便 又不想chmod 777 -R ~/   就想有什么办法能对目录 g+r+x o+r+x  对文件g+r  o+r 呢  正好又!在学python, 就自己用python写了一个   # coding:utf-8 import os import stat path="/Users/xxx/BOOKS" for root, dirs, files in os.walk(path): for file in files: ...
做了一个页面, 两段文字 <img src="images3/icon-arrow.jpg" width="14" height="15" style="padding-bottom: 0"/>xxxxxx &nbsp;&nbsp; <a class="box" style="text-decoration:none" href="zzzzzz">yyyyyy</a>   在ff上显示正常, 但在s ...
mac 10.6.7上的apache配了半天出不来 log错误如下 [Tue Apr 12 00:16:37 2011] [warn] Init: Session Cache is not configured [hint: SSLSessionCache] httpd: Could not reliably determine the server's fully qualified domain name, using lich0079matoMacBook-Pro.local for Se rverName [Tue Apr 12 00:16:42 2011] [notic ...
Global site tag (gtag.js) - Google Analytics