mysql中使用timestamp在java实体类中用什么对应
时间: 2023-12-10 12:39:45 浏览: 190
在Java实体类中,可以使用Java的Date类或者Java 8中的LocalDateTime类来对应MySQL中的timestamp类型。
使用Date类:
```java
import java.util.Date;
public class Entity {
private Date timestampColumn;
public Date getTimestampColumn() {
return timestampColumn;
}
public void setTimestampColumn(Date timestampColumn) {
this.timestampColumn = timestampColumn;
}
}
```
使用LocalDateTime类:
```java
import java.time.LocalDateTime;
public class Entity {
private LocalDateTime timestampColumn;
public LocalDateTime getTimestampColumn() {
return timestampColumn;
}
public void setTimestampColumn(LocalDateTime timestampColumn) {
this.timestampColumn = timestampColumn;
}
}
```
注意,在使用Java 8中的LocalDateTime类时,需要保证MySQL版本为5.6.4及以上,否则会出现兼容性问题。
阅读全文