简体   繁体   中英

Consider defining a bean of type 'com.project.airCompanies.repo.AirCompanyRepository' in your configuration. With MySQL database

It is my class where I implements airCompaniesService and override some methods:

package com.project.airCompanies.service.impl;

import com.project.airCompanies.mapper.AirCompanyMapper;
import com.project.airCompanies.model.AirCompany;
import com.project.airCompanies.model.request.AirCompanyRequest;
import com.project.airCompanies.model.response.AirCompanyResponse;
import com.project.airCompanies.repo.AirCompanyRepository;
import com.project.airCompanies.service.AirCompanyService;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;

@Service
@RequiredArgsConstructor
public class AirCompanyServiceImpl implements AirCompanyService {
    private final AirCompanyRepository repo;
   
    private final AirCompanyMapper mapper;
    @Override
    public AirCompanyResponse save(AirCompanyRequest request) {
        AirCompany result = mapper.requestToModel(request);
        result = repo.save(result);
        return mapper.modelToResponse(result);

    }

    @Override
    public void delete(Integer id) {
        repo.deleteById(id);
    }
}

It is interface repository, where I created MySql Repository

package com.project.airCompanies.repo;

import com.project.airCompanies.model.AirCompany;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface AirCompanyRepository extends JpaRepository<AirCompany, Integer> {

}

And I have error:

2021-03-04 12:07:58.439  INFO 7924 --- [  restartedMain] c.p.a.AirCompaniesApplication            : Starting AirCompaniesApplication using Java 15.0.1 on DESKTOP-2S6243E with PID 7924 (D:\TaskSynergyWay\airCompanies\target\classes started by natal in D:\TaskSynergyWay\airCompanies)
2021-03-04 12:07:58.443  INFO 7924 --- [  restartedMain] c.p.a.AirCompaniesApplication            : No active profile set, falling back to default profiles: default
2021-03-04 12:07:58.486  INFO 7924 --- [  restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2021-03-04 12:07:58.486  INFO 7924 --- [  restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2021-03-04 12:07:59.235  INFO 7924 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2021-03-04 12:07:59.242  INFO 7924 --- [  restartedMain] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2021-03-04 12:07:59.242  INFO 7924 --- [  restartedMain] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.43]
2021-03-04 12:07:59.302  INFO 7924 --- [  restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2021-03-04 12:07:59.302  INFO 7924 --- [  restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 815 ms
2021-03-04 12:07:59.331  WARN 7924 --- [  restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'airCompaniesController' defined in file [D:\TaskSynergyWay\airCompanies\target\classes\com\project\airCompanies\controller\AirCompaniesController.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'airCompanyServiceImpl' defined in file [D:\TaskSynergyWay\airCompanies\target\classes\com\project\airCompanies\service\impl\AirCompanyServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.project.airCompanies.repo.AirCompanyRepository' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
2021-03-04 12:07:59.334  INFO 7924 --- [  restartedMain] o.apache.catalina.core.StandardService   : Stopping service [Tomcat]
2021-03-04 12:07:59.345  INFO 7924 --- [  restartedMain] ConditionEvaluationReportLoggingListener : 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2021-03-04 12:07:59.360 ERROR 7924 --- [  restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of constructor in com.project.airCompanies.service.impl.AirCompanyServiceImpl required a bean of type 'com.project.airCompanies.repo.AirCompanyRepository' that could not be found.


Action:

Consider defining a bean of type 'com.project.airCompanies.repo.AirCompanyRepository' in your configuration.


Process finished with exit code 0

So how I can solve this problem Consider defining a bean of type 'com.project.airCompanies.repo.AirCompanyRepository' in your configuration. With MySQL database?

You have to make sure that your Components are searched by spring. If you structure is as follow

ROOT
----com.example
---------------services            
---------------repositories
---------------controllers
---------------models
---------------configs
----ApplicationMain.java

Then you may not require to manually inform spring to search for component classes otherwise you can do

@ComponentScan({"com.project.airCompanies.service", "com.project.airCompanies.repo"})

to your SpringBootApplication class Documentation

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM