02 2013 档案

摘要:1.实体bean package org.hyn.bean; public class User { private int id; private String name; private int age; ...//长长的set get 方法 }2.Mapper及配置文件 package org.hyn.maper; import org.hyn.bean.User; public interface UserMapper { public void insertUser(User user); public User getUser(String name); ... 阅读全文
posted @ 2013-02-20 15:18 逐梦北京 阅读(248) 评论(0) 推荐(0)
摘要:在此想和大家分享一个不错的编写properties文件的Eclipse插件(plugin),有了它我们在编辑一些简体中文、繁体中文等Unicode文本时,就不必再使用native2ascii编码了。 您可以通过Eclipse中的软件升级(Software Update)安装此插件,步骤如下: 1、展 阅读全文
posted @ 2013-02-20 14:24 逐梦北京 阅读(338) 评论(0) 推荐(0)