java - DomainClassConverter 在 Spring Boot 中不起作用

标签 java spring spring-boot spring-mvc spring-data

我有一个非常简单的 Spring Boot MVC 项目,我在其中尝试使用 DomainClassConverter 直接加载实体。但似乎没有找到 DomainClassConverter。访问 'localhost:8080/one/2' url 时出现以下错误:

无法将“java.lang.String”类型的值转换为所需类型“com.example.test.data.Customer”:找不到匹配的编辑器或转换策略

但是 DomainClassConverter 应该由 Spring Boot 启用并管理转换。

我还尝试通过 @EnableSpringDataWebSupport 注释显式启用它,但它也不起作用。

这是我的 Controller 代码:

@Controller
public class TestController {

    @Autowired
    private CustomerRepository customerRepository;

    @GetMapping("/all")
    public void all(Model model) {
        Iterable<Customer> customers=customerRepository.findAll();
        model.addAttribute("customers",customers);
    };

    @GetMapping("/one/{customer_id}")
    public void one(@PathVariable("customer_id") Customer customer, Model model) {
        model.addAttribute("customer",customer);
    };
}

客户代码:

@Entity
public class Customer {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    @Getter
    private Long id;

    @Getter
    @Setter
    private String firstName;

    @Getter
    @Setter
    private String lastName;

    protected Customer() {
    }

    public Customer(String firstName, String lastName) {
        this.firstName = firstName;
        this.lastName = lastName;
    }

}

CustomerREpositoy:

public interface CustomerRepository extends PagingAndSortingRepository<Customer, Long> {

    List<Customer> findByLastName(String lastName);

    Customer findById(long id);
}

应用:

@SpringBootApplication
public class TestApplication {
    public static void main(String[] args) {
        SpringApplication.run(TestApplication.class);
    }
}

最后是 build.graddle:

plugins {
    id 'org.springframework.boot' version '2.3.1.RELEASE'
    id 'io.spring.dependency-management' version '1.0.9.RELEASE'
    id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '14'

configurations {
    compileOnly {
        extendsFrom annotationProcessor
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
//    implementation 'org.springframework.boot:spring-boot-starter-security'
    implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
    implementation 'org.springframework.boot:spring-boot-starter-web'
    compileOnly 'org.projectlombok:lombok'
    developmentOnly 'org.springframework.boot:spring-boot-devtools'
    runtimeOnly 'org.postgresql:postgresql'
    annotationProcessor 'org.projectlombok:lombok'
    testImplementation('org.springframework.boot:spring-boot-starter-test') {
        exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
    }
//    testImplementation 'org.springframework.security:spring-security-test'
}

test {
    useJUnitPlatform()
}

有什么想法吗?

最佳答案

您尝试获取 customer_id(路径变量)作为 Customer 对象。因此,当您尝试访问 localhost:8080/one/2 时出现上述错误。

customer_id(路径变量)数据类型更改为相关数据类型(String、int 等),如下所示,

@GetMapping("/one/{customer_id}")
public void one(@PathVariable("customer_id") String customerId, Model model) {
    ----
};

关于java - DomainClassConverter 在 Spring Boot 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62837089/

相关文章:

java - Spring 配置属性递归类型

java - 为什么我的 @Autowired DataSource 和 JdbcTemplate 变为 null?

java - 如何使用 FeignClient 发送字符串

java - 当我尝试使用 getter 访问我为父类(super class)创建作为实例变量的列表时,为什么我不断收到错误?

java - 相当于 Java 中的 String.Format()

java - 无法使用 jasypt 从属性文件加密用户名/密码

mysql - 使用 CrudRepository 删除带有集合的实体时,Hibernate-envers 抛出异常

java - 如何在具有两个场景的 JavaFXML Controller 中初始化圆形对象的双数组?

java - DSE 图更多线程导致响应时间变慢

java - 如何在使用 Spring Data JPA nativeQuery 时用参数值替换表名称