Spring MVC 异常错误:不是托管类型:class com运动鞋实体鞋

eanckbw9  于 2022-11-14  发布在  Spring
关注(0)|答案(2)|浏览(129)

我是新的Spring和Spring Boot 。我试图建立一个项目以下的一个例子,我在这里找到:http://www.javaguides.net/2018/09/spring-mvc-using-spring-boot2-jsp-jpa-hibernate5-mysql-example.html
这是我的申请:

package com.SportyShoe;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@ComponentScan(basePackages = "com.SportyShoe")
@SpringBootApplication
@EntityScan("com.SportyShoe.*")
@EnableJpaRepositories
public class SportyShoeApplication {
    

    public static void main(String[] args) {
        SpringApplication.run(SportyShoeApplication.class, args);
    }

}

以下是我的实体:

package com.SportyShoe.Entity;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name="Shoe")
public class Shoe {
    
    @Id
    @Column(name="id")
    private String id;
    

    @Column(name="colour")
    private String colour;
    
    @Column(name="gender")
    private String gender;
    
    @Column(name="category")
    private String category;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getColour() {
        return colour;
    }

    public void setColour(String colour) {
        this.colour = colour;
    }

    public String getGender() {
        return gender;
    }

    public void setGender(String gender) {
        this.gender = gender;
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category;
    }
    

}

以下是我的存储库:

package com.SportyShoe.repositories;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

import com.SportyShoe.Entity.Shoe;

@Repository
public interface  ShoeRepositories extends JpaRepository<Shoe, Integer>{

}

下面是我的控制器:

package com.SportyShoe.controllers;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import com.SportyShoe.repositories.ShoeRepositories;

@Controller
public class ShoeController {
    
    @Autowired
    ShoeRepositories shoeRepo;
    
    @RequestMapping("/shoes")
    public String shoeList(Model model) {
         model.addAttribute("shoes", shoeRepo.findAll());
         return "shoes";
    }

}

这里是我的application.properties:

spring.mvc.view.prefix: /WEB-INF/jsp/
spring.mvc.view.suffix: .jsp

logging.level.org.springframework=INFO

################### DataSource Configuration ##########################
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/Sporty_Shoes
spring.datasource.username=root
spring.datasource.password=MPword@123

################### Hibernate Configuration ##########################

spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true

当我在示例中到达这一点时,上面写着运行应用程序将在数据库中创建表,但我得到的只是标题中提到的错误。
现在应该怎么做才能使它发挥作用呢?

91zkwejq

91zkwejq1#

主要的问题是我使用的Sping Boot 的版本。
当我使用2.7.2而不是我最初使用的3.0.0(快照)时,它开始工作。

polhcujo

polhcujo2#

您的Shoe类中有String ID,但是您创建了一个存储库接口JpaRepository<Shoe, Integer>而不是JpaRepository<Shoe, String>,所以我建议在Shoe类中定义Integer ID以匹配存储库。
此外,问题可能出在包定义中-javadoc建议使用基本包名称,如“com.SportyShoe”,而不是“com.SportyShoe.*"。
您也可以尝试使用类型安全实体扫描,如下所示:

@EntityScan(basePackageClasses = Shoe.class)

如果有多个实体,则如下所示:

@EntityScan(basePackageClasses = {Shoe.class, Lace.class})

另外,尝试删除@EntityScan@ComponentScan@EnableJpaRepositories- spring-boot尝试在包中或包下查找实体和组件,默认情况下,您在包中有@SpringBootApplication注解(如果您对类路径有依赖性,则还有jpa存储库)。这些注解可能用于额外的配置。
请参阅参考文档中的相关信息。

相关问题