`
C_J
  • 浏览: 127938 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

开源,从关注产品社区做起(ibatis3.x的最近一个issue展示)

阅读更多

题记:

    “低碳从拔下插头做起”,开源,从关注产品社区做起:)

    发这个贴的的缘由是看了jnn大哥发的一篇关于开源软件的帖子http://www.iteye.com/topic/277696,虽然是08年写的,但里面说到follow社区的mail list的建议是不错的,想想自己还未奉献过代码,于是去ibaits的google社区瞅了一眼,其实只要你行动,提交一个被accepted的issue并不是那么困难。

 

   以下就是展现一个最新被ibatis3.x接受的建议。(当然不是我commit的,希望以后有机会吧)

 

Reported by clinton.begin, May 17, 2010
Reporter:  Travis Hein 

Would it be possible to create a new annotation (or does one exist already
and I just have not found it yet), where I can specify that @Select results
should be a <resultMap> that exists in the mapper XML file ?

可以不可以为@select新增一个注解用于重用resultMap配置中定义的map。


For example,

比如:

Consider a "country" table,

CREATE TABLE COUNTRY
(
   ID bigint PRIMARY KEY NOT NULL,
   CODE varchar(2) NOT NULL,
   ISO_CODE varchar(3) NOT NULL,
   NAME varchar(2147483647),
   COUNTRY_CODE varchar(10),
   ACTIVE boolean DEFAULT TRUE NOT NULL
);

 

And the java Bean,

public class Country {
  Long id;
  String code; // 2 digit ISO country code
  String isoCode; // 3 digit ISO country code
  String name; // string name
  String countryCode; // the telephone dialing prefix (e.g. +1)
  boolean active = true;

  // and all the get() set() methods for these bean properties
}

 


And then the mapper interface,

public interface CountryDAO {

  /**
  * Selects all country entries.
  * Though it appears when we use the annotations, we need to specify the
results every time ?
  */
  @Select( value = { "select * from country where active = true" })
  @Results(value = {
      @Result(property="id"),
      @Result(property="code"),
      @Result(property="isoCode", column="iso_code"),
      @Result(property="name", column="name"),
      @Result(property="countryCode", column="country_code"),
      @Result(property="active", column="active")
  })
  List<Country> getAllActive();

  // TODO: all these methods would also be select queries, where I would
want the same results map as above
  Country getById(Long id);
  Country getByCode(String code);
  Country getByIsoCode(String isoCode);
}

 

这里每个方法都需要重复添加如上返回的map定义,就显的很冗余了。
Where, instead of the @Results annotation, which would need to be
duplicated with its nested @Result annotations on every select method that
I want to return the same mapping, what I would wish to have would be
something like a

@ResultMap(value="myMapperID") 作者想添加这个注解,替代上面的重复定义。

annotation, where the myMapperID would be the ID of a <resultMap> I have
declared in the mapper's xml file that will be included by the
SqlMapConfig.xml (which I have anyway to bind to this mapper interface, and
also because I have some more complex queries declared in the xml mapper
file too).

Where in this example, I already have a

<mapper namespace="CountryDAO">

<resultMap type="Country" id="countryResult">
<result property="id" column="id"/>
<result property="code" column="code"/>
<result property="isoCode" column="iso_code"/>
<result property="name" column="name"/>
<result property="countryCode" column="country_code"/>
<result property="active" column="active"/>
</resultMap>

 


So this wishful @ResultMap annotation would then make the mapper interface
look like:

 

修改后的代码变为:

 

public interface CountryDAO {

  @Select( value = { "select * from country where active = true" })
  @ResultMap(value = "countryResult")
  List<Country> getAllActive();


  // and now other things that want to select into this map can do so,
re-using the single map declaration
  // that is referenced in the xml.

  @Select( value = { "select * from country where id = #{id} })
  @ResultMap(value = "countryResult")
  Country getById(Long id);


  @Select( value = { "select * from country where code = #{code} })
  @ResultMap(value = "countryResult")
  Country getByCode(String code);

  @Select( value = { "select * from country where isoCode = #{isoCode} })
  @ResultMap(value = "countryResult")
  Country getByIsoCode(String isoCode);
}

 


I think having something like this @ResultMap annotation would be a good
thing to have, what do you think?

 

 

 看到countryResult这个map已经在xml文件中定义好了,无需再每个方法前面重复定义了,只要声明就ok了。

分享到:
评论
6 楼 jiming 2011-04-26  
tedeyang 写道
很好的改进,不过话说回来,mybatis用annotation是走上邪路了。sql又跑回java代码里,那我还不如用sql template


同意。
5 楼 tangqii 2011-02-14  
tedeyang 写道
很好的改进,不过话说回来,mybatis用annotation是走上邪路了。sql又跑回java代码里,那我还不如用sql template

也不一定 封装好了是为了积累更好的性能优化
总比你写了SQL再去调优强吧?annotation用过后都觉得好 省事+效率 是 CODE的主旨.
4 楼 IcedCoffee 2010-09-01  
annotation是复古式风格..哈哈
3 楼 chan.d 2010-08-31  
tedeyang 写道
很好的改进,不过话说回来,mybatis用annotation是走上邪路了。sql又跑回java代码里,那我还不如用sql template


值得深思。
2 楼 tedeyang 2010-08-31  
很好的改进,不过话说回来,mybatis用annotation是走上邪路了。sql又跑回java代码里,那我还不如用sql template
1 楼 IcedCoffee 2010-08-31  
没用过ibatis的annotation

相关推荐

    ibatis2.X升级mybatis3.X之曲径通幽处

    首先,从版本号的升级可以察觉到一个明显的改变,Mybatis3.x引入了更现代化的设计理念。例如,Mybatis3.x的API更加简洁,对注解的支持也更为全面,这使得代码更易于理解和维护。在2.x版本中,XML配置文件是主要的...

    Eclipse Spring3.x集成ibatis2.x开发案例

    标题 "Eclipse Spring3.x集成ibatis2.x开发案例" 提供了我们即将探讨的核心内容:如何在Eclipse环境中利用Spring3.x版本与iBatis2.x版本进行整合开发。这个主题涵盖了Java企业级开发中的两个重要框架,Spring作为...

    ibatis-2.3.4.726.jar,ibatis-2.3.0.677.jar,ibatis-2.3.3.720.jar下载

    iBATIS,全称为“Infrastructure for Binding Applications To SQL Maps”,是一个优秀的开源持久层框架,它允许Java开发者将SQL语句与Java代码分离,提供了一种简单但强大的在Java应用中映射SQL和结果集的方式。...

    Ibatis2.x学习实战

    每个SqlMap对应一个数据库表,通过XML文件进行定义,包括插入、更新、删除、查询等操作。 四、动态SQL Ibatis2.x的一大亮点就是支持动态SQL,可以通过条件标签(if、where、choose、when、otherwise等)来构造动态...

    JAVA之ibatis2.3.X

    ibatis对于Java中的应用,可能在积极的促进。

    ibatis-2.3.3.720.jar

    ibatis-2.3.3.720.jar

    IBatis.DataMapper.1.6.2.bin.zip

    - "IBatis.DataAccess.1.9.2.bin.zip":这个文件可能是IBatis的另一个组件DataAccess的1.9.2版本,可能包含与DataMapper协同工作的类库和接口。 - "Ibatis.DataMapper.1.6.2.bin":这是一个单独的1.6.2版本的...

    ibatis2.3.4.8.jar 和 ibatis-2.3.4.726.jar两个版本的下载

    Ibatis,全称为MyBatis,是一个优秀的Java持久层框架,它主要负责简化数据库操作,将SQL语句与Java代码分离,使得开发人员能够更加专注于业务逻辑。在本主题中,我们将深入探讨Ibatis的两个特定版本:ibatis2.3.4.8....

    IBatis.net-IBatis.DataAccess.1.9.2/IBatis.DataMapper.1.6.2

    3. **示例代码**:展示了如何在实际项目中应用IBatis.DataAccess的典型用法。 4. **最佳实践**:提供了在开发过程中应遵循的准则,以优化性能和代码质量。 通过学习和使用这些文档,开发者能够更好地理解和利用...

    IBatisNet.Common.1.6.2、IBatis.DataAccess.1.9.2、IBatis.DataMapper.1.6.2

    标题和描述中提到的"IBatisNet.Common.1.6.2、IBatis.DataAccess.1.9.2、IBatis.DataMapper.1.6.2"是针对一个名为IBatisNet的框架的不同组件的版本号。IBatisNet是一个在.NET平台上实现的开源持久层框架,它源于Java...

    ibatis2.3.X培训PPT

    【标题】"ibatis2.3.X培训PPT"涵盖了关于MyBatis(原名iBatis)2.3.x版本的核心概念与实践应用。MyBatis是一个优秀的持久层框架,它支持定制化SQL、存储过程以及高级映射。本培训材料主要针对初学者和有一定经验的...

    ibatis2.rar

    iBATIS是一个优秀的Java持久层框架,它提供了一个SQL映射框架,使开发者能够将SQL语句直接写在配置文件中,与Java代码分离,从而实现了数据访问逻辑和业务逻辑的解耦。"ibatis2.rar"这个压缩包文件包含了关于iBATIS ...

    iBatis2.X入门附带完整项目

    iBatis 2.X 是一款流行的数据...这是一个很好的起点,让你能够熟练地运用iBatis进行数据访问,并为后续的MyBatis 3.X或其他ORM框架的学习打下基础。在实践中不断探索和积累经验,你将能更深入地理解和应用这些技术。

    IBatis.DataMapper.1.6.2

    标题 "IBatis.DataMapper.1.6.2" 指的是 IBatis 数据映射器的一个特定版本,即 1.6.2 版本。IBatis 是一个流行且广泛使用的开源持久层框架,它允许开发者将 SQL 查询与.NET 应用程序中的对象模型进行解耦,提供了一...

    SSI-iBatis2.x

    本文是个人在学习过程中的学习笔记,详细讲解了如何使用iBatis2.x以及如何将其与Struts2.x,Spring3.x进行整合开发,其中包括iBatis基础使用,存储过程调用和数据库函数的调用。

    ibatis-core-3.0.jar org.apache.ibatis.annotations.Param

    `org.apache.ibatis.annotations.Param`是MyBatis中的一个重要注解,用于处理方法参数映射。 `@Param`注解主要用于SQL查询中的动态参数绑定,尤其是在动态SQL语句中。在MyBatis的映射文件或者Mapper接口中,当我们...

    ibatismysql.jar

    ibatismysql.jar ibatismysql.jar

Global site tag (gtag.js) - Google Analytics