NutzCN Logo
精华 [版本更新]1.r.56 鄱阳湖黄丫头
发布于 2881天前 作者 wendal 3159 次浏览 复制 上一个帖子 下一个帖子
标签:

这个版本是一个Bugfix版本,只有极少的新特性, 若正在使用1.r.55 可无缝升级.

问题修复:

* @Inject根据类型注入有致命的bug.
* 继承SimpleAopMaker的类如果是个Ioc Bean,所引用的对象会创建多次.
* DB2下Daos.queryCount生成的语句不对.

新特性:

* Cnd类新增andEX和orEX方法
      // 以前
      Cnd cnd = Cnd.where("age", "<", 25);
      if (!Strings.isBlank(city)) {
          cnd.and("city", "=", city);
      }
      //现在
      Cnd cnd = Cnd.where("age", "<", 25);
      cnd.andEX("city", "=", city);

提交统计

 127 files changed, 839 insertions(+), 2622 deletions(-)

关于命名

* [申请一个nutz版本冠名鄱阳湖黄丫头](/yvr/t/rlq8pik42cit0rkasmbepalnm9)
5 回复

maven

		<dependency>
			<groupId>org.nutz</groupId>
			<artifactId>nutz</artifactId>
			<version>1.r.56</version>
		</dependency>

@wendal 还继续使用IocBean(name="xxxxx")也不冲突吧

@wendal 你猜几天以后,官网下载数字超过1K ? 赌一顿烧鸭饭

更新一版, 修正一个bug

https://github.com/nutzam/nutz/issues/1049

http://repo1.maven.org/maven2/org/nutz/nutz/1.r.56.r3/

		<dependency>
			<groupId>org.nutz</groupId>
			<artifactId>nutz</artifactId>
			<version>1.r.56.r3</version>
		</dependency>
添加回复
请先登陆
回到顶部