使用dao时初始化对象的最佳方法

时间:2014-01-30 01:36:16

标签: java mysql design-patterns jpa

我正在使用MySQL构建一个Tomcat应用程序。我正在使用DAO模式与数据库通信。我在初始化对象中的字段时遇到问题。

主要是为了保存输入...我正在使用EclipseLink JPA从表中生成模型实体。我正在手工编写DAO代码。我手工编写模型,但这似乎更容易。

我遇到的问题是将对象写回数据库将是所有默认的空值。例如,此表包含一堆id列。并非所有对象的每个实例都有上下文。创建对象似乎效率低下,并且必须将所有字段设置为零才能将它们保存到数据库中。如果他们没有背景,我想让他们独自一人。也就是说,我只想设置那些具有上下文的字段。

似乎最好使用模型类中的构造函数来初始化它们。但是如果我这样做,EclipseLink将在下次生成模型时覆盖它们。

让DAO更新方法检查空值并将它们设置为零看起来像一个kludge。我想我也可以使用工厂来创建和初始化模型类。

但是我想知道我是不是在想这个......任何这些解决方案都可行。但必须有一个公认的模式。

我应该如何处理它?<​​/ p>

由于

模型只是吸气剂和制定者。 Contructor是空的。

代码摘录如下......

Notice notice = new Notice();
notice.setEvent("Welcome");
notice.setUserid(user.getId());
noticeDao.updateNotice(notice);

DAO:

//this seems inefficient
if(notice.getTravid() == null) notice.setTravid(0L);
if(notice.getBusid()  == null) notice.setBusid(0L);
if(notice.getSaveid() == null) notice.setSaveid(0L);
if(notice.getTargid() == null) notice.setTargid(0L);
if(notice.getTestmode() == null) notice.setTestmode(false);

String SQLupdate = "UPDATE notices SET "
                + "userid = ?, "
                + "travid = ?, "
                + "busid = ?, "
                + "saveid = ?, "
                + "targid = ?, "
                + "testmode = ?, "
                + "event = ?, "
                + "status = ?, "
                + "error = ?, "
                + "created = ?, "
                + "modified = ?, "
                + "log = ? "
                + "WHERE id = ?";
ps = conn.prepareStatement(SQLupdate);          
    ps.setLong(1, notice.getUserid());
    ps.setLong(2, notice.getTravid());
    ps.setLong(3, notice.getBusid());
    ps.setLong(4, notice.getSaveid());
    ps.setLong(5, notice.getTargid());
    ps.setBoolean(6, notice.getTestmode());
    ps.setString( 7, notice.getEvent());
    ps.setString( 8, notice.getStatus());
    ps.setString( 9, notice.getError());
    ps.setObject(10, notice.getCreated());
    ps.setObject(11, notice.getModified());
    ps.setString(12, notice.getLog());
    ps.setLong(  13, notice.getId());
    ps.executeUpdate();

DB:

CREATE TABLE `notices` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `userid` int(20) unsigned NOT NULL DEFAULT '0',
  `travid` int(20) unsigned NOT NULL DEFAULT '0',
  `busid` int(20) unsigned NOT NULL DEFAULT '0',
  `saveid` int(20) unsigned NOT NULL DEFAULT '0',
  `targid` int(20) unsigned NOT NULL DEFAULT '0',
  `testmode` tinyint(1) DEFAULT '0',
  `event` varchar(40) DEFAULT NULL,
  `status` varchar(20) DEFAULT 'Pending',
  `error` varchar(255) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `log` text,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8

数据库表是这样的:

ID

通常,代码如下所示:

2 个答案:

答案 0 :(得分:0)

只是为了解决您的具体问题,是否有办法告诉eclipselink设置字段的默认值?

但是,您的数据库设计可能存在更深层次的问题。 *id字段不是外键吗?他们应该是。如果他们外键,那么对于特定字段没有上下文的行,他们在数据库中的值应为null,而不是0L

在更深层次的杠杆中,如果它们中的大多数在大多数行中没有上下文 - 也就是说,不在上下文中是一个例外而不是常态 - 那么也许你的数据库设计本身并不好。您可能正在设计一个通用表,并且可以将单个表分成多个。

答案 1 :(得分:0)

感谢您的出色表现。我解决的解决方案就是对所有数据类型使用泛型setObject。即。

ps.setLong(1, notice.getUserid());

变为

ps.setObject(1, notice.getUserid());

MySQL似乎非常满意。 NULL不是问题。这项工作要少得多。