Asked Nov 7th, 2022 2:09 a.m. 177 0 1
  • 177 0 1
-2

Cách tương tác dữ liệu từ FE với database

Share
  • 177 0 1

Cho em hỏi có cách nào trong java spring lấy dữ liệu từ database một tên là a nhưng sang FE có thể nhận với tên là b không ạ. Tên khác nhau thôi Ví dụ như trong entity em có @Column(name = "profiledescription") private String profiledescription;

Nhưng FE thì getlist với add lại dùng name khác

1 ANSWERS


Answered Nov 7th, 2022 10:57 a.m.
Accepted
0

ban co the map sang object khac xong gui di. kieu kieu DAO y

Share
Nov 8th, 2022 8:10 a.m.

Bạn tham khảo : Jackson

import com.fasterxml.jackson.annotation.JsonProperty;

@Id
@JsonProperty("dish_type_id")
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
0
| Reply
Share
Viblo
Let's register a Viblo Account to get more interesting posts.