2

我有一个连接到 SQL 数据库并从表中获取某些信息的类 (SQLRequests)。这些存储在结果集中(rsUpdate 和 rsNew)。下面是方法,我添加了一些代码以确保提取正确的数据。

public void ProcessSQLUpdate (Connection conn) 
{

    try
    {

    Statement stmt = conn.createStatement();
    String sql = SQLDataAdaptor.SELECT_PROCESS_SQL_UPDATE;
    ResultSet rsUpdate = stmt.executeQuery(sql);
    while(rsUpdate.next ())
        {
        System.out.println("Applix Number: " + rsUpdate.getString(2) + " " + ("Change: " + rsUpdate.getString(1)));
        logger.info("Applix Number: " + rsUpdate.getString(2) + " " + ("Change: " + rsUpdate.getString(1)));
        }
            if(stmt!=null)
                stmt.close();
            if(conn!=null)
                conn.close();
        }

我想在不同类 (EmailSender) 的电子邮件方法中发送此信息,但我不知道如何将此信息添加到其中。

public void sendEmail () throws PollingException
{
    Properties props = new Properties();
    PollingProperties properties = PollingProperties.getInstance();
    props.put("mail.smtp.host", (properties.getProperty(PollingProperties.POL_EMAIL_SMTP)));
    Date date = new Date();

    try {
    Session mailSession = Session.getDefaultInstance(props, null);

    MimeMessage message = new MimeMessage(mailSession);
    message.setSubject (properties.getProperty(PollingProperties.POL_EMAIL_SUBJECT));
    message.setFrom(new InternetAddress(properties.getProperty(PollingProperties.POL_EMAIL_FROM)));
    message.setRecipients(Message.RecipientType.TO, 
            InternetAddress.parse(properties.getProperty(PollingProperties.POL_EMAIL_TO)));
    message.setText("Applix Update for " + date + 
            "\n\n New Rows: " [rsUpdate info here]+ 
            "\n\n Updated Rows:");

        Transport.send(message);

希望这是有道理的

4

1 回答 1

1

您正在寻找的是DTO:数据传输对象

DTO 是一种设计模式,用于减少两层(或两个方法......)之间的调用冗余,通过使用包含所有所需字段的对象,作为参数传递以避免在目标方法上进行多次调用或具有巨大的构造函数.

例如,如果您正在查询一个人的详细信息,并且想要调用一个方法来打印它们,您现在可以这样做:

// Query the db and fill the resultset, then

String firstName = rs.getString("firstName");
String lastName  = rs.getString("lastName");
int    age       = rs.getString("age");

// close the connection, the resultset etc, and then

printPersonDetail(firstName);           // first call
printPersonDetail(lastName);            // second call
printPersonDetail(String.valueOf(age)); // another call

和其他地方

private static void printPersonDetail(String something){
    System.out.println(something);
}

相反,使用 DTO,您可以创建一个反映您需要表示的实体的对象,在本例中为人员:

public Class PersonDTO{

    String firstName;
    String lastName;  
    int    age;       

    /* Generate Getters and Setters with your IDE, 
       eg. in Eclipse: "ALT + SHIFT + S"  ->  "Generate Getters and Setters" */
    public String getFirstName() {
        return firstName;
    }
    public void setFirstName(String firstName) {
        this.firstName = firstName;
    }
    public String getLastName() {
        return lastName;
    }
    public void setLastName(String lastName) {
        this.lastName = lastName;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
}

从你的班级

// Query the db and fill the resultset, then

PersonDTO person = new PersonDTO(); 
person.setFirstName(rs.getString("firstName"));
person.setLastName(rs.getString("lastName"));
person.setAge(rs.getString("age"));

// close the connection, the resultset etc, and then

printPersonDetail(person); // only call: you are passing a DTO as parameter

和其他地方

private static void printPersonDetail(PersonDTO person){
    System.out.println(person.getFirstName());
    System.out.println(person.getLastName());
    System.out.println(person.getAge());
}

这是一个简单的例子,但我希望能帮助你理解这个想法。使用 DTO 设计更大的实体,并与其他类交换它们的值;仅将值放入其中,根本没有逻辑,并确定接收实体而不是接收单个值的方法。

注意:完成后总是关闭结果集,总是使用名称而不是索引 in getString(),可能使用这个千年的东西,比如Spring的结果集和 RowMappers。

来自 MSDN 的有关 DTO 的更多信息

于 2013-07-30T14:17:03.490 回答