Skip to content

Commit 23dcae3

Browse files
committed
Switch to records.
See #606.
1 parent 32d118f commit 23dcae3

File tree

13 files changed

+30
-57
lines changed

13 files changed

+30
-57
lines changed

jdbc/basics/src/main/java/example/springdata/jdbc/basics/aggregate/LegoSetRepository.java

+14-10
Original file line numberDiff line numberDiff line change
@@ -15,35 +15,39 @@
1515
*/
1616
package example.springdata.jdbc.basics.aggregate;
1717

18+
import java.util.List;
19+
1820
import org.springframework.data.jdbc.repository.query.Modifying;
1921
import org.springframework.data.jdbc.repository.query.Query;
2022
import org.springframework.data.repository.CrudRepository;
2123
import org.springframework.data.repository.query.Param;
2224

23-
import java.util.List;
24-
2525
/**
2626
* A repository for {@link LegoSet}.
2727
*
2828
* @author Jens Schauder
2929
*/
3030
interface LegoSetRepository extends CrudRepository<LegoSet, Integer> {
3131

32-
@Query("SELECT m.name model_name, m.description, l.name set_name" +
33-
" FROM model m" +
34-
" JOIN lego_set l" +
35-
" ON m.lego_set = l.id" +
36-
" WHERE :age BETWEEN l.min_age and l.max_age")
32+
@Query("""
33+
SELECT m.name model_name, m.description, l.name set_name
34+
FROM model m
35+
JOIN lego_set l
36+
ON m.lego_set = l.id
37+
WHERE :age BETWEEN l.min_age and l.max_age
38+
""")
3739
List<ModelReport> reportModelForAge(@Param("age") int age);
3840

3941
/**
4042
* See https://stackoverflow.com/questions/52978700/how-to-write-a-custom-query-in-spring-data-jdbc
4143
* @param name
4244
* @return
4345
*/
44-
@Query("select a.*, b.handbuch_id as manual_handbuch_id, b.author as manual_author, b.text as manual_text from lego_set a " +
45-
"join handbuch b on a.id = b.handbuch_id " +
46-
"where a.name = :name")
46+
@Query("""
47+
select a.*, b.handbuch_id as manual_handbuch_id, b.author as manual_author, b.text as manual_text from lego_set a
48+
join handbuch b on a.id = b.handbuch_id
49+
where a.name = :name
50+
""")
4751
List<LegoSet> findByName(@Param("name") String name);
4852

4953
@Modifying

jdbc/basics/src/main/java/example/springdata/jdbc/basics/aggregate/Model.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,5 @@
2424
*
2525
* @author Jens Schauder
2626
*/
27-
@Value
28-
@With(AccessLevel.PACKAGE)
29-
public class Model {
30-
String name, description;
27+
public record Model(String name, String description) {
3128
}

jdbc/basics/src/main/java/example/springdata/jdbc/basics/aggregate/ModelReport.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,5 @@
2222
/**
2323
* @author Jens Schauder
2424
*/
25-
@Value
26-
@With(AccessLevel.PACKAGE)
27-
public class ModelReport {
28-
String modelName, description, setName;
25+
public record ModelReport(String modelName, String description, String setName) {
2926
}

jdbc/basics/src/test/java/example/springdata/jdbc/basics/aggregate/AggregateTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ void customQueries() {
103103
Output.list(report, "Model Report");
104104

105105
assertThat(report).hasSize(7)
106-
.allMatch(m -> m.getDescription() != null && m.getModelName() != null && m.getSetName() != null);
106+
.allMatch(m -> m.description() != null && m.modelName() != null && m.setName() != null);
107107

108108
var updated = repository.lowerCaseMapKeys();
109109
// SUV, F1 Ferrari 2018 and Muck get updated
110110
assertThat(updated).isEqualTo(3);
111111

112-
final var legoSetsByName = repository.findByName(smallCarsSetName);
112+
var legoSetsByName = repository.findByName(smallCarsSetName);
113113
assertThat(legoSetsByName).hasSize(1);
114114
}
115115

jdbc/jmolecules/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@
6666
</plugins>
6767
</build>
6868

69-
</project>
69+
</project>

jdbc/jmolecules/src/main/java/example/springdata/jdbc/jmolecules/customer/Address.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,8 @@
1515
*/
1616
package example.springdata.jdbc.jmolecules.customer;
1717

18-
import lombok.Value;
19-
2018
import org.jmolecules.ddd.annotation.ValueObject;
2119

22-
@Value
2320
@ValueObject
24-
public class Address {
25-
private final String street, city, zipCode;
21+
public record Address(String street, String city, String zipCode) {
2622
}

jdbc/jmolecules/src/main/java/example/springdata/jdbc/jmolecules/customer/Customer.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public Customer(String firstname, String lastname, Address address) {
4848

4949
Assert.notNull(address, "Address must not be null!");
5050

51-
this.id = CustomerId.of(UUID.randomUUID().toString());
51+
this.id = new CustomerId(UUID.randomUUID().toString());
5252

5353
this.firstname = firstname;
5454
this.lastname = lastname;
@@ -57,8 +57,6 @@ public Customer(String firstname, String lastname, Address address) {
5757
this.addresses.add(address);
5858
}
5959

60-
@Value(staticConstructor = "of")
61-
public static class CustomerId implements Identifier {
62-
private final String id;
60+
public record CustomerId(String id) implements Identifier {
6361
}
6462
}

jdbc/jmolecules/src/main/java/example/springdata/jdbc/jmolecules/order/LineItem.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,8 @@
1515
*/
1616
package example.springdata.jdbc.jmolecules.order;
1717

18-
import lombok.Value;
19-
2018
import org.jmolecules.ddd.annotation.ValueObject;
2119

22-
@Value
2320
@ValueObject
24-
public class LineItem {
25-
String description;
21+
public record LineItem(String description) {
2622
}

jdbc/jmolecules/src/main/java/example/springdata/jdbc/jmolecules/order/Order.java

+3-7
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import lombok.Getter;
2121
import lombok.RequiredArgsConstructor;
2222
import lombok.ToString;
23-
import lombok.Value;
2423

2524
import java.util.ArrayList;
2625
import java.util.List;
@@ -47,7 +46,7 @@ public class Order implements AggregateRoot<Order, Order.OrderId> {
4746

4847
public Order(Customer customer) {
4948

50-
this.id = OrderId.of(UUID.randomUUID());
49+
this.id = new OrderId(UUID.randomUUID());
5150
this.customer = Association.forAggregate(customer);
5251
this.lineItems = new ArrayList<>();
5352
}
@@ -61,13 +60,10 @@ public Order addLineItem(String description) {
6160
return this;
6261
}
6362

64-
@Value(staticConstructor = "of")
65-
public static class OrderId implements Identifier {
66-
67-
private final UUID orderId;
63+
public record OrderId(UUID orderId) implements Identifier {
6864

6965
public static OrderId create() {
70-
return OrderId.of(UUID.randomUUID());
66+
return new OrderId(UUID.randomUUID());
7167
}
7268
}
7369
}

jdbc/jmolecules/src/test/java/example/springdata/jdbc/jmolecules/ApplicationIntegrationTests.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,12 @@
2828
import org.springframework.boot.test.context.SpringBootTest;
2929
import org.springframework.context.ConfigurableApplicationContext;
3030
import org.springframework.data.jdbc.core.mapping.JdbcMappingContext;
31-
import org.springframework.data.relational.core.mapping.RelationalPersistentEntity;
32-
import org.springframework.data.relational.core.mapping.RelationalPersistentProperty;
3331

3432
/**
3533
* @author Oliver Drotbohm
3634
*/
3735
@SpringBootTest
38-
@RequiredArgsConstructor
39-
class ApplicationIntegrationTests {
40-
41-
private final ConfigurableApplicationContext context;
36+
record ApplicationIntegrationTests(ConfigurableApplicationContext context) {
4237

4338
@Test
4439
void exposesAssociationInMetamodel() {

jdbc/jooq/src/main/java/example/springdata/jdbc/jooq/JooqRepositoryImpl.java

+1-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,7 @@
1111
*
1212
* @author Florian Lüdiger
1313
*/
14-
public class JooqRepositoryImpl implements JooqRepository {
15-
16-
private final DSLContext dslContext;
17-
18-
public JooqRepositoryImpl(DSLContext dslContext) {
19-
this.dslContext = dslContext;
20-
}
14+
public record JooqRepositoryImpl(DSLContext dslContext) implements JooqRepository {
2115

2216
public List<Category> getCategoriesWithAgeGroup(AgeGroup ageGroup) {
2317
return this.dslContext.select().from(CATEGORY).where(CATEGORY.AGE_GROUP.equal(ageGroup.name()))

jdbc/jooq/src/test/java/example/springdata/jdbc/jooq/SimpleEntityTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void exerciseRepositoryForSimpleEntity() {
5353
var saved = repository.saveAll(asList(cars, buildings));
5454
Output.list(repository.findAll(), "`Cars` and `Buildings` got saved");
5555

56-
assertThat(saved).extracting(c -> c.getId()).isNotNull();
56+
assertThat(saved).extracting(Category::getId).isNotNull();
5757

5858
// update one
5959
buildings.setDescription("Famous and impressive buildings incl. the 'bike shed'.");

jdbc/mybatis/src/test/java/example/springdata/jdbc/mybatis/MyBatisTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Demonstrates queries can be mapped using MyBatis.
2929
*
3030
* @author Jens Schauder
31-
* @author Divya Srivastava
31+
* @author Divya Srivastava
3232
*/
3333
@SpringBootTest(classes = MyBatisConfiguration.class)
3434
@AutoConfigureJdbc

0 commit comments

Comments
 (0)