Java Spring boot

When I ran the program it gave me an error like this, I tried to fix it but couldn’t.
condition evaluation report re-run your application with ‘debug’ enabled.
2024-06-02T21:32:45.173+07:00 ERROR 4728 — [ restartedMain] o.s.boot.SpringApplication : Application run failed

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘adminController’: Unsatisfied dependency expressed through field ‘ProductService’: Error creating bean with name ‘productService’: Unsatisfied dependency expressed through field ‘ProductRepository’: Error creating bean with name ‘productRepository’ defined in com.khomsi.site_project.repository.ProductRepository defined in @EnableJpaRepositories declared on JpaRepositoriesRegistrar.EnableJpaRepositoriesConfiguration: Not a managed type: class com.khomsi.site_project.entity.Product
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) ~[spring-beans-6.1.8.jar:6.1.8]
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) ~[spring-context-6.1.8.jar:6.1.8]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) ~[spring-context-6.1.8.jar:6.1.8]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) ~[spring-boot-3.3.0.jar:3.3.0]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) ~[spring-boot-3.3.0.jar:3.3.0]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) ~[spring-boot-3.3.0.jar:3.3.0]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) ~[spring-boot-3.3.0.jar:3.3.0]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) ~[spring-boot-3.3.0.jar:3.3.0]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) ~[spring-boot-3.3.0.jar:3.3.0]
at com.khomsi.site_project.WebStoreApplication.main(WebStoreApplication.java:11) ~[classes/:na]
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na]
at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:50) ~[spring-boot-devtools-3.3.0.jar:3.3.0]
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘productService’: Unsatisfied dependency expressed through field ‘ProductRepository’: Error creating bean with name ‘productRepository’ defined in com.khomsi.site_project.repository.ProductRepository defined in @EnableJpaRepositories declared on JpaRepositoriesRegistrar.EnableJpaRepositoriesConfiguration: Not a managed type: class com.khomsi.site_project.entity.Product

This is adminController:

package com.khomsi.site_project.controller;

import com.khomsi.site_project.entity.*;
import com.khomsi.site_project.exception.CategoryNotFoundException;
import com.khomsi.site_project.exception.OrderNotFoundException;
import com.khomsi.site_project.exception.ProductNotFoundException;
import com.khomsi.site_project.exception.UserNotFoundException;
import com.khomsi.site_project.service.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Controller;
import org.springframework.stereotype.Service;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import org.webjars.NotFoundException;

import java.util.List;

@Controller
@RequestMapping("/admin")
public class AdminController {
    @Autowired
    private ProductService ProductService;
    @Autowired
    private UserService userService;
    @Autowired
    private UserInfoService userInfoService;

    @Autowired
    private CategoryService categoryService;
    @Autowired
    private VendorService vendorService;

    @Autowired
    private OrdersService ordersService;

    @Autowired
    private OrderBasketService orderBasketService;

    @Autowired
    private AdminTools adminTools;

    @GetMapping({"", "/", "/admin-panel"})
    public String showAdminPanel() {
        return "admin/admin-panel";
    }

    @GetMapping("/products")
    public String listProductsFirstPage(Model model) {
        return adminTools.listProductsByPage(1, model, "title", "asc", null, 0);
    }

    @GetMapping("/products/edit/{id}")
    public String updateProduct(@PathVariable(name = "id") int id, Model model, RedirectAttributes attributes) {
        try {
            Product product = ProductService.getProduct(id);
            List<Vendor> vendorList = vendorService.getAllVendors();
            List<Category> categoryList = categoryService.listCategoriesUserInForm();
            model.addAttribute("product", product);
            model.addAttribute("vendorList", vendorList);
            model.addAttribute("categoryList", categoryList);
        } catch (ProductNotFoundException e) {
            attributes.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/product/products";
        }
        return "admin/product/product_form";
    }

    @GetMapping("/products/new")
    public String addProduct(Model model) {

        List<Vendor> vendorList = vendorService.getAllVendors();
        List<Category> categoryList = categoryService.listCategoriesUserInForm();
        model.addAttribute("product", new Product());
        model.addAttribute("vendorList", vendorList);
        model.addAttribute("categoryList", categoryList);

        return "admin/product/product_form";
    }

    @PostMapping("/products/save")
    public String saveProduct(Product product, RedirectAttributes redirect) {
        ProductService.saveProduct(product);
        redirect.addFlashAttribute("message", "The product was saved successfully");
        return "redirect:/admin/products";
    }

    @GetMapping("/products/delete/{id}")
    public String deleteProduct(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            ProductService.deleteProduct(id);
            redirect.addFlashAttribute("message",
                    "The product ID " + id + " has been deleted successfully");
        } catch (ProductNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/products";
    }

    @GetMapping("/users")
    public String listUsersFirstPage(Model model) {
        return adminTools.listUsersByPage(1, model);
    }

    @GetMapping("/users/new")
    public String newUser(Model model) {
        model.addAttribute("user", new User());
        model.addAttribute("userInfo", new UserInfo());
        model.addAttribute("roles", Role.values());
        return "admin/user/user_form";
    }

    @PostMapping("/users/save")
    public String createUser(UserInfo userInfo, User user, RedirectAttributes redirect) {
        user.setUserInfo(userInfo);
        userInfo.setUser(user);
        userService.saveUser(user);
        redirect.addFlashAttribute("message", "The user was saved successfully");

        return "redirect:/admin/users";
    }

    @GetMapping("/users/edit/{id}")
    public String updateUser(@PathVariable(name = "id") int id, Model model, RedirectAttributes redirect) {
        try {
            User user = userService.getUser(id);
            UserInfo userInfo = userInfoService.getUserDetail(id);
            model.addAttribute("user", user);
            model.addAttribute("userInfo", userInfo);
            model.addAttribute("roles", Role.values());
        } catch (UserNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/users";
        }
        return "admin/user/user_form";
    }

    @GetMapping("/users/delete/{id}")
    public String deleteUser(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            userService.deleteUser(id);
            redirect.addFlashAttribute("message",
                    "The user ID " + id + " has been deleted successfully");
        } catch (UserNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/users";
    }

    @GetMapping("/categories")
    public String listCategoriesFirstPage(Model model) {
        return adminTools.listCategoriesByPage(1, model);
    }

    @GetMapping("/categories/edit/{id}")
    public String updateCategory(@PathVariable int id, Model model, RedirectAttributes attributes) {
        try {
            Category category = categoryService.getCategory(id);
            List<Category> categoryList = categoryService.listCategoriesUserInForm();
            model.addAttribute("category", category);
            model.addAttribute("categoryList", categoryList);
            return "admin/category/category_form";
        } catch (CategoryNotFoundException e) {
            attributes.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/categories";
        }
    }

    @GetMapping("/categories/new")
    public String addCategory(Model model) {
        List<Category> categoryList = categoryService.listCategoriesUserInForm();
        model.addAttribute("category", new Category());
        model.addAttribute("categoryList", categoryList);

        return "admin/category/category_form";
    }

    @PostMapping("/categories/save")
    public String saveCategory(@ModelAttribute Category category, RedirectAttributes attributes) {
        categoryService.saveCategory(category);
        attributes.addFlashAttribute("message", "The category has been saved successfully");
        return "redirect:/admin/categories";
    }

    @GetMapping("/categories/delete/{id}")
    public String deleteCategory(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            categoryService.deleteCategory(id);
            redirect.addFlashAttribute("message",
                    "The category ID " + id + " has been deleted successfully");
        } catch (CategoryNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/categories";
    }

    @GetMapping("/vendors")
    public String listVendorsFirstPage(Model model) {
        return adminTools.listVendorsByPage(1, model);
    }

    @GetMapping("/vendors/new")
    public String newVendor(Model model) {
        model.addAttribute("vendor", new Vendor());
        return "admin/vendor/vendor_form";
    }

    @PostMapping("/vendors/save")
    public String createVendor(Vendor vendor, RedirectAttributes redirect) {
        vendorService.saveVendor(vendor);
        redirect.addFlashAttribute("message", "The vendor was saved successfully");
        return "redirect:/admin/vendors";
    }

    @GetMapping("/vendors/edit/{id}")
    public String updateVendor(@PathVariable(name = "id") int id, Model model, RedirectAttributes redirect) {
        try {
            Vendor vendor = vendorService.getVendor(id);
            model.addAttribute("vendor", vendor);
        } catch (NotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/vendors";
        }
        return "admin/vendor/vendor_form";
    }

    @GetMapping("/vendors/delete/{id}")
    public String deleteVendor(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            vendorService.deleteVendor(id);
            redirect.addFlashAttribute("message",
                    "The vendor ID " + id + " has been deleted successfully");
        } catch (NotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/vendors";
    }

    @GetMapping("/orders")
    public String listOrdersFirstPage(Model model) {
        return adminTools.listOrdersByPage(1, model);
    }

    @PostMapping("/orders/save")
    public String createOrder(Order order, RedirectAttributes redirect) {
        ordersService.saveOrder(order);

        redirect.addFlashAttribute("message", "The order was saved successfully");
        return "redirect:/admin/orders";
    }

    @GetMapping("/orders/edit/{id}")
    public String updateOrder(@PathVariable(name = "id") int id, Model model, RedirectAttributes redirect) {
        try {
            Order order = ordersService.getOrder(id);
            model.addAttribute("orderTypes", OrderType.values());
            model.addAttribute("order", order);
        } catch (NotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/orders";
        }
        return "admin/orders/order_form";
    }

    @GetMapping("/orders/delete/{id}")
    public String deleteOrder(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            ordersService.deleteOrder(id);
            redirect.addFlashAttribute("message",
                    "The orders ID " + id + " has been deleted successfully");
        } catch (OrderNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/orders";
    }

    @GetMapping("/order_baskets")
    public String allOrderBasket(Model model) {
        try {
            model.addAttribute("orderBaskets", orderBasketService.getAllOrderBaskets());
        } catch (NotFoundException ex) {
            model.addAttribute("error", ex.getCause().getCause().getMessage());
            return "/error/404";
        }
        return "admin/order_basket/order_baskets";
    }
}

This is ProductService:

package com.khomsi.site_project.controller;

import com.khomsi.site_project.entity.*;
import com.khomsi.site_project.exception.CategoryNotFoundException;
import com.khomsi.site_project.exception.OrderNotFoundException;
import com.khomsi.site_project.exception.ProductNotFoundException;
import com.khomsi.site_project.exception.UserNotFoundException;
import com.khomsi.site_project.service.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Controller;
import org.springframework.stereotype.Service;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import org.webjars.NotFoundException;

import java.util.List;

@Controller
@RequestMapping("/admin")
public class AdminController {
    @Autowired
    private ProductService ProductService;
    @Autowired
    private UserService userService;
    @Autowired
    private UserInfoService userInfoService;

    @Autowired
    private CategoryService categoryService;
    @Autowired
    private VendorService vendorService;

    @Autowired
    private OrdersService ordersService;

    @Autowired
    private OrderBasketService orderBasketService;

    @Autowired
    private AdminTools adminTools;

    @GetMapping({"", "/", "/admin-panel"})
    public String showAdminPanel() {
        return "admin/admin-panel";
    }

    @GetMapping("/products")
    public String listProductsFirstPage(Model model) {
        return adminTools.listProductsByPage(1, model, "title", "asc", null, 0);
    }

    @GetMapping("/products/edit/{id}")
    public String updateProduct(@PathVariable(name = "id") int id, Model model, RedirectAttributes attributes) {
        try {
            Product product = ProductService.getProduct(id);
            List<Vendor> vendorList = vendorService.getAllVendors();
            List<Category> categoryList = categoryService.listCategoriesUserInForm();
            model.addAttribute("product", product);
            model.addAttribute("vendorList", vendorList);
            model.addAttribute("categoryList", categoryList);
        } catch (ProductNotFoundException e) {
            attributes.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/product/products";
        }
        return "admin/product/product_form";
    }

    @GetMapping("/products/new")
    public String addProduct(Model model) {

        List<Vendor> vendorList = vendorService.getAllVendors();
        List<Category> categoryList = categoryService.listCategoriesUserInForm();
        model.addAttribute("product", new Product());
        model.addAttribute("vendorList", vendorList);
        model.addAttribute("categoryList", categoryList);

        return "admin/product/product_form";
    }

    @PostMapping("/products/save")
    public String saveProduct(Product product, RedirectAttributes redirect) {
        ProductService.saveProduct(product);
        redirect.addFlashAttribute("message", "The product was saved successfully");
        return "redirect:/admin/products";
    }

    @GetMapping("/products/delete/{id}")
    public String deleteProduct(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            ProductService.deleteProduct(id);
            redirect.addFlashAttribute("message",
                    "The product ID " + id + " has been deleted successfully");
        } catch (ProductNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/products";
    }

    @GetMapping("/users")
    public String listUsersFirstPage(Model model) {
        return adminTools.listUsersByPage(1, model);
    }

    @GetMapping("/users/new")
    public String newUser(Model model) {
        model.addAttribute("user", new User());
        model.addAttribute("userInfo", new UserInfo());
        model.addAttribute("roles", Role.values());
        return "admin/user/user_form";
    }

    @PostMapping("/users/save")
    public String createUser(UserInfo userInfo, User user, RedirectAttributes redirect) {
        user.setUserInfo(userInfo);
        userInfo.setUser(user);
        userService.saveUser(user);
        redirect.addFlashAttribute("message", "The user was saved successfully");

        return "redirect:/admin/users";
    }

    @GetMapping("/users/edit/{id}")
    public String updateUser(@PathVariable(name = "id") int id, Model model, RedirectAttributes redirect) {
        try {
            User user = userService.getUser(id);
            UserInfo userInfo = userInfoService.getUserDetail(id);
            model.addAttribute("user", user);
            model.addAttribute("userInfo", userInfo);
            model.addAttribute("roles", Role.values());
        } catch (UserNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/users";
        }
        return "admin/user/user_form";
    }

    @GetMapping("/users/delete/{id}")
    public String deleteUser(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            userService.deleteUser(id);
            redirect.addFlashAttribute("message",
                    "The user ID " + id + " has been deleted successfully");
        } catch (UserNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/users";
    }

    @GetMapping("/categories")
    public String listCategoriesFirstPage(Model model) {
        return adminTools.listCategoriesByPage(1, model);
    }

    @GetMapping("/categories/edit/{id}")
    public String updateCategory(@PathVariable int id, Model model, RedirectAttributes attributes) {
        try {
            Category category = categoryService.getCategory(id);
            List<Category> categoryList = categoryService.listCategoriesUserInForm();
            model.addAttribute("category", category);
            model.addAttribute("categoryList", categoryList);
            return "admin/category/category_form";
        } catch (CategoryNotFoundException e) {
            attributes.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/categories";
        }
    }

    @GetMapping("/categories/new")
    public String addCategory(Model model) {
        List<Category> categoryList = categoryService.listCategoriesUserInForm();
        model.addAttribute("category", new Category());
        model.addAttribute("categoryList", categoryList);

        return "admin/category/category_form";
    }

    @PostMapping("/categories/save")
    public String saveCategory(@ModelAttribute Category category, RedirectAttributes attributes) {
        categoryService.saveCategory(category);
        attributes.addFlashAttribute("message", "The category has been saved successfully");
        return "redirect:/admin/categories";
    }

    @GetMapping("/categories/delete/{id}")
    public String deleteCategory(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            categoryService.deleteCategory(id);
            redirect.addFlashAttribute("message",
                    "The category ID " + id + " has been deleted successfully");
        } catch (CategoryNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/categories";
    }

    @GetMapping("/vendors")
    public String listVendorsFirstPage(Model model) {
        return adminTools.listVendorsByPage(1, model);
    }

    @GetMapping("/vendors/new")
    public String newVendor(Model model) {
        model.addAttribute("vendor", new Vendor());
        return "admin/vendor/vendor_form";
    }

    @PostMapping("/vendors/save")
    public String createVendor(Vendor vendor, RedirectAttributes redirect) {
        vendorService.saveVendor(vendor);
        redirect.addFlashAttribute("message", "The vendor was saved successfully");
        return "redirect:/admin/vendors";
    }

    @GetMapping("/vendors/edit/{id}")
    public String updateVendor(@PathVariable(name = "id") int id, Model model, RedirectAttributes redirect) {
        try {
            Vendor vendor = vendorService.getVendor(id);
            model.addAttribute("vendor", vendor);
        } catch (NotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/vendors";
        }
        return "admin/vendor/vendor_form";
    }

    @GetMapping("/vendors/delete/{id}")
    public String deleteVendor(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            vendorService.deleteVendor(id);
            redirect.addFlashAttribute("message",
                    "The vendor ID " + id + " has been deleted successfully");
        } catch (NotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/vendors";
    }

    @GetMapping("/orders")
    public String listOrdersFirstPage(Model model) {
        return adminTools.listOrdersByPage(1, model);
    }

    @PostMapping("/orders/save")
    public String createOrder(Order order, RedirectAttributes redirect) {
        ordersService.saveOrder(order);

        redirect.addFlashAttribute("message", "The order was saved successfully");
        return "redirect:/admin/orders";
    }

    @GetMapping("/orders/edit/{id}")
    public String updateOrder(@PathVariable(name = "id") int id, Model model, RedirectAttributes redirect) {
        try {
            Order order = ordersService.getOrder(id);
            model.addAttribute("orderTypes", OrderType.values());
            model.addAttribute("order", order);
        } catch (NotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
            return "redirect:/admin/orders";
        }
        return "admin/orders/order_form";
    }

    @GetMapping("/orders/delete/{id}")
    public String deleteOrder(@PathVariable(name = "id") Integer id, RedirectAttributes redirect) {
        try {
            ordersService.deleteOrder(id);
            redirect.addFlashAttribute("message",
                    "The orders ID " + id + " has been deleted successfully");
        } catch (OrderNotFoundException e) {
            redirect.addFlashAttribute("message", e.getMessage());
        }
        return "redirect:/admin/orders";
    }

    @GetMapping("/order_baskets")
    public String allOrderBasket(Model model) {
        try {
            model.addAttribute("orderBaskets", orderBasketService.getAllOrderBaskets());
        } catch (NotFoundException ex) {
            model.addAttribute("error", ex.getCause().getCause().getMessage());
            return "/error/404";
        }
        return "admin/order_basket/order_baskets";
    }
}

This is ProductRepository:

package com.khomsi.site_project.repository;

import com.khomsi.site_project.entity.Category;
import com.khomsi.site_project.entity.Product;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Repository;

import java.util.List;
@Repository
public interface ProductRepository extends JpaRepository<Product, Integer> {
    @Query("SELECT product FROM Product product WHERE (product.category.id = ?1 OR product.category.allParentsIDs LIKE %?2%)"
            + "ORDER BY product.title ASC")
    public Page<Product> listByCategory(Integer categoryId, Pageable pageable, String categoryIDMatch);

    @Query(value = "SELECT * FROM product WHERE MATCH(title, description) AGAINST (?1)",
            nativeQuery = true)
    public Page<Product> search(String keyword, Pageable pageable);

    public Product findByAlias(String alias);

    public Product findByTitle(String title);

    public List<Product> findAllByCategoryId(Integer category);

    public Long countById(Integer id);

    @Query("SELECT p FROM Product p WHERE p.title LIKE %?1% "
            + "OR p.description LIKE %?1% "
            + "OR p.vendor.title LIKE %?1% "
            + "OR p.category.title LIKE %?1%")
    public Page<Product> findAll(String keyword, Pageable pageable);

    @Query("SELECT p FROM Product p WHERE p.category.id = ?1 " +
            "OR p.category.allParentsIDs LIKE %?2%")
    public Page<Product> findAllInCategory(Integer categoryId, String categoryIdMatch,
                                           Pageable pageable);

    @Query("SELECT p FROM Product p WHERE (p.category.id = ?1 " +
            "OR p.category.allParentsIDs LIKE %?2%) AND "
            + "(p.title LIKE %?3% "
            + "OR p.description LIKE %?3% "
            + "OR p.vendor.title LIKE %?3% "
            + "OR p.category.title LIKE %?3%)")
    public Page<Product> searchInCategory(Integer categoryId, String categoryIdMatch,
                                          String keyword, Pageable pageable);
}

Help me! I tried but couldn’t.

New contributor

Hieu Ngoc is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật