
How an AI coding companion keeps my code DRY
Learn how I keep my code DRY with Amazon Q Developer customizations, and improve on-boarding, knowledge transfer, and team collaboration
Order
. Doing this without an AI coding companion means I'll need to look for existing patterns, copy/paste, find APIs I need, or code it up from scratch. This has the potential to create more code that is inconsistent with the rest of the code base. Instead, I'll use Amazon Q Developer to generate a code suggestion. I ask:Create an implementation for a new entity called Order, in Java. Make sure to create the entity class and the repository implementation using JPA.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import jakarta.persistence.*;
import java.time.LocalDate;
public class Order {
private Long id;
private LocalDate orderDate;
private String status;
// Constructors, getters, and setters
// Additional fields and relationships as needed
}
Order
class should be extending the BaseEntity
class that defines some base properties and logic that all of this project's entities should have. Imagine you're a developer new to this project. You may not have the same context I have.BaseEntity
.1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(name = "orders")
public class Order extends BaseEntity {
(name = "order_date")
private LocalDate orderDate;
(name = "total_amount")
private Double totalAmount;
// Constructors, getters, and setters
public Order() {
// Default constructor
}
public Order(LocalDate orderDate, Double totalAmount) {
this.orderDate = orderDate;
this.totalAmount = totalAmount;
}
// Getters and setters
}
Order
entity.1
2
3
package com.anycompany.order;
// class representing an order entity using JPA
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.anycompany.order;
// class representing an order entity using JPA
import javax.persistence.GenerationType;
import java.util.Date;
public class Order {
private Long id;
private Date orderDate;
// constructors, getters and setters
}
BaseEntity
superclass.doStuff
isn't going to cut it here!BaseEntity
ever changes, the calling code doesn't also need to be changed.getOrderTotal
three different ways, or which logging library we should be using.