gpt4 book ai didi

java - 如何比较日期从java到mysql时间戳字段

转载 作者:行者123 更新时间:2023-11-29 09:07:18 24 4
gpt4 key购买 nike

很抱歉再次发布同样的问题,但我很想知道。

我想知道如何将 java 中的当前日期与 mysql 中存储的日期进行比较。

存储在 MySQL 中的日期是 2013-01-04 13:15:00

当我通过获取当前日期在 java 中比较此日期时

Date date = new Date();

然后写了一个查询,如果存储在 MySQL 中的日期小于当前显示结果。但查询在列表中返回 0 个结果或异常我已将异常粘贴在末尾。

select model from abc model where model.abcStartDate <= :? and model.abcEndDate >= :?

在“:?”日期已过MySQL中开始日期和结束日期是时间戳数据类型。

下面是EJB实体类

@Entity
@Table(name = "abc_table", uniqueConstraints = {})
public class ABCClass implements java.io.Serializable {

private static final long serialVersionUID = -1924961655993587546L;

// Fields
private Date abcStartDate;
private Date abcEndDate;

// Constructors

/** default constructor */
public ABCClass() {
}


@OrderBy(value="3")
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "abc_start_date", unique = false, nullable = false, insertable = true, updatable = true, length = 19)
public Date getabcStartDate() {
return this.abcStartDate;
}

public void setabcStartDate(Date abcStartDate) {
this.abcStartDate = abcStartDate;
}

@OrderBy(value="4")
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "abc_end_date", unique = false, nullable = false, insertable = true, updatable = true, length = 19)
public Date getabcEndDate() {
return this.abcEndDate;
}

public void setabcEndDate(Date abcEndDate) {
this.abcEndDate = abcEndDate;
}

}

并抛出异常

Exception thrown from bean; nested exception is: Exception [EclipseLink-3001] (Eclipse Persistence Services - 2.2.1.v20110722-r9776): org.eclipse.persistence.exceptions.ConversionException
Exception Description: The object [65464533565], of class [class java.lang.String], could not be converted to [class java.lang.Integer].
Internal Exception: java.lang.NumberFormatException: For input string: "65464533565"

最佳答案

JPQL中的日期比较可以通过以下方式完成。

如果您要与当前日期和时间进行比较

select model from abc model where model.abcStartDate >= CURRENT_TIMESTAMP 
and model.abcEndDate >= CURRENT_TIMESTAMP

或者创建查询并传递参数

query = em.createQuery("select model from abc model where model.abcStartDate >= 
:time and model.abcEndDate >= :time");
query.setParameter("time", new Date(), TemporalType.TIMESTAMP);

关于java - 如何比较日期从java到mysql时间戳字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14220957/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com