`
文章列表
在父viewController中如下设置:     UIBarButtonItem *backbutton = [[UIBarButtonItem alloc]init];     backbutton.title = @"返回列表";     self.navigationItem.backBarButtonItem = backbutton;     [backbutton release];
这其实有一个求球面距离的公式,忘了,百度到的……嘿嘿 // lat是纬度,lung是经度 //a=Lat1 – Lat2 为两点纬度之差 b=Lung1 -Lung2 为两点经度之差; //6378.137(KM) 为地球半径 - -@ //恩,结果也是km…… //另外,google的api其实已经实现好了的 // 计算两点距离 private final double EARTH_RADIUS = 6378137.0; private double gps2m(double lat_a, double lng_a, double lat_b, ...
action层 // 获取密码 @RequestMapping(value = "/openapi/send_pwd_to_email.json", method = { RequestMethod.GET, RequestMethod.POST }) public void jsonSendPwdToEmail(HttpServletRequest request, HttpServletResponse response, Model model) { User user = userService.getUserByNick(ReqUtil ...
这几天做级联的关系搞得头大,这篇帖子还是蛮好的,转一下 @Entity @Table(name="orders") public class Order { //1-m,多的一方为关系维护端,关系维护端负责外键记录的更新,关系被维护端没有权利更新外键记录 private String orderid; private Float amount; private Set<OrderItem> items = new HashSet<OrderItem>(); @Id @Column(length=12) publ ...
1.工厂方法模式(Factory Method)  将程序中创建对象的操作,单独出来处理,创建一个产品的工厂接口,把实际的工作转移到具体的子类。大大提高了系统扩展的柔性,接口的抽象化处理给相互依赖的对象创建提供了最好的抽象模 ...
DetachedCriteria infoQuery = DetachedCriteria.forClass(Info.class); // 在business,name,description 中模糊查询含keywords的info //数据库表字段是business_  ,  name_  ,description_  .entity里是 business, name,description infoQuery.add(Restrictions.sqlRestriction("CONCAT(business_,name_,description_) LIKE (?), '%&quo ...
public static void main(String[] args) { String contentString = "sdfsd abc---abc <a href='http://www.hao123.com'>" + "http://www.hao123.com</a><img title='img' src='abc' />" + "sdfsdfds"; contentString=contentString.replaceAll("<a href[^>]*&g ...
好久了,想试着写写自己的博客,记录自己学习生活
Global site tag (gtag.js) - Google Analytics