簡體   English   中英

找不到 String 類型的 Bean

[英]Bean of type String that could not be found

這個 web 應用程序將與數據庫一起使用,但現在我從一個最簡單的存根開始並卡住了。

我有點不知道出了什么問題。 總的來說,我對 Spring 或如何理解和跟蹤此類錯誤不太熟悉。 我在這里唯一理解的是它與方法參數的類型無關。 我已經用谷歌搜索了這個錯誤,在此處查看了有關此類錯誤的一些答案,但未能找到正確的解決方案。

所以,我得到這個:

 :: Spring Boot ::        (v2.2.5.RELEASE)

2020-05-22 15:44:36.132  INFO 17992 --- [           main] c.rinkashikachi.SpringReactApplication   : Starting SpringReactApplication v0.0.1-SNAPSHOT on DESKTOP-3BPPMPQ with PID 17992 (D:\Projects\J
ava\zni\target\zni-0.0.1-SNAPSHOT.jar started by 15rin in D:\Projects\Java\zni)
2020-05-22 15:44:36.135  INFO 17992 --- [           main] c.rinkashikachi.SpringReactApplication   : No active profile set, falling back to default profiles: default
2020-05-22 15:44:37.108  INFO 17992 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
2020-05-22 15:44:37.116  INFO 17992 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2020-05-22 15:44:37.116  INFO 17992 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.31]
2020-05-22 15:44:37.166  INFO 17992 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2020-05-22 15:44:37.166  INFO 17992 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 999 ms
2020-05-22 15:44:37.241  WARN 17992 --- [           main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springfram
ework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'utilController' defined in URL [jar:file:/D:/Projects/Java/zni/target/zni-0.0.1-SNAPSHOT.jar!/BOOT-INF/classes!/co
m/rinkashikachi/controllers/UtilController.class]: Unsatisfied dependency expressed through constructor parameter 1; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyExcep
tion: Error creating bean with name 'databaseMetaDataService': Unsatisfied dependency expressed through method 'getTableListBySchema' parameter 0; nested exception is org.springframework.beans.fact
ory.NoSuchBeanDefinitionException: No qualifying bean of type 'java.lang.String' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
2020-05-22 15:44:37.244  INFO 17992 --- [           main] o.apache.catalina.core.StandardService   : Stopping service [Tomcat]
2020-05-22 15:44:37.252  INFO 17992 --- [           main] ConditionEvaluationReportLoggingListener :

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-05-22 15:44:37.326 ERROR 17992 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   :

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

Description:

Parameter 0 of method getTableListBySchema in com.rinkashikachi.service.DatabaseMetaDataService required a bean of type 'java.lang.String' that could not be found.


Action:

Consider defining a bean of type 'java.lang.String' in your configuration.

這就是方法所在。

package com.rinkashikachi.service;

import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;

import com.rinkashikachi.service.repositories.ColNameEntity;
import com.rinkashikachi.service.repositories.TableNameEntity;

import java.util.ArrayList;
import java.util.List;

@Service("databaseMetaDataService")
public class DatabaseMetaDataService {

    @Autowired
    public List<TableNameEntity> getTableListBySchema(String schema) {

        // Stub
        List<TableNameEntity> names = new ArrayList<>(3);
        switch(schema) {
            case "ADDITIONAL":
                names.add(new TableNameEntity(1L, "ADDITIONAL1"));
                names.add(new TableNameEntity(2L, "ADDITIONAL2"));
                names.add(new TableNameEntity(3L, "ADDITIONAL3"));
                break;
            case "BOOKKEEPING":
                names.add(new TableNameEntity(1L, "BOOKKEEPING1"));
                names.add(new TableNameEntity(2L, "BOOKKEEPING2"));
                names.add(new TableNameEntity(3L, "BOOKKEEPING3"));
                break;
        }
        return names;
    }
}

這就是我使用它的地方:

package com.rinkashikachi.controllers;

import java.util.ArrayList;
import java.util.List;

import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.beans.factory.annotation.Autowired;

import com.rinkashikachi.service.DatabaseMetaDataService;
import com.rinkashikachi.service.repositories.TableNameEntity;


@Controller
@RequestMapping(value="/api")
public class UtilController {

    private final DatabaseMetaDataService databaseMetaDataService;

    @Autowired
    public UtilController(DatabaseMetaDataService databaseMetaDataService) {
        this.databaseMetaDataService = databaseMetaDataService;
    }

    @GetMapping(value="/tech")
    public ResponseEntity<List<String>> getTechData(
            @RequestParam(value="schema") String schema,
            @RequestParam(value="table", required = false) String table,
            @RequestParam(value="column", required = false) String column) {
        List<TableNameEntity> entityList = databaseMetaDataService.getTableListBySchema(schema);
        List<String> tables = new ArrayList<>(entityList.size());

        for (TableNameEntity entity : entityList) {
            tables.add(entity.toString());
            System.out.println(entity);
        }

        return !tables.isEmpty()
                ? new ResponseEntity<>(tables, HttpStatus.OK)
                : new ResponseEntity<>(null, HttpStatus.BAD_REQUEST);
    }
}

問題在於這段代碼:

@Autowired 公共列表 getTableListBySchema(字符串模式){

你能試一下嗎:

package com.rinkashikachi.service;

import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;

import com.rinkashikachi.service.repositories.ColNameEntity;
import com.rinkashikachi.service.repositories.TableNameEntity;

import java.util.ArrayList;
import java.util.List;

@Service("databaseMetaDataService")
public class DatabaseMetaDataService {


    public List<TableNameEntity> getTableListBySchema(String schema) {

        // Stub
        List<TableNameEntity> names = new ArrayList<>(3);
        switch(schema) {
            case "ADDITIONAL":
                names.add(new TableNameEntity(1L, "ADDITIONAL1"));
                names.add(new TableNameEntity(2L, "ADDITIONAL2"));
                names.add(new TableNameEntity(3L, "ADDITIONAL3"));
                break;
            case "BOOKKEEPING":
                names.add(new TableNameEntity(1L, "BOOKKEEPING1"));
                names.add(new TableNameEntity(2L, "BOOKKEEPING2"));
                names.add(new TableNameEntity(3L, "BOOKKEEPING3"));
                break;
        }
        return names;
    }
}
package com.rinkashikachi.controllers;

import java.util.ArrayList;
import java.util.List;

import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.beans.factory.annotation.Autowired;

import com.rinkashikachi.service.DatabaseMetaDataService;
import com.rinkashikachi.service.repositories.TableNameEntity;


@Controller
@RequestMapping(value="/api")
public class UtilController {
    @Autowired
    private DatabaseMetaDataService databaseMetaDataService;


    @GetMapping(value="/tech")
    public ResponseEntity<List<String>> getTechData(
            @RequestParam(value="schema") String schema,
            @RequestParam(value="table", required = false) String table,
            @RequestParam(value="column", required = false) String column) {
        List<TableNameEntity> entityList = databaseMetaDataService.getTableListBySchema(schema);
        List<String> tables = new ArrayList<>(entityList.size());

        for (TableNameEntity entity : entityList) {
            tables.add(entity.toString());
            System.out.println(entity);
        }

        return !tables.isEmpty()
                ? new ResponseEntity<>(tables, HttpStatus.OK)
                : new ResponseEntity<>(null, HttpStatus.BAD_REQUEST);
    }
}

getTableListBySchema方法標記為Autowired告訴 spring 在此處進行依賴注入。 這就是為什么 Spring 尋找Spring類型的 bean 以將其自動裝配到方法參數的原因。 從該方法中刪除Autowired注釋。

作為旁注,如果您正在開發 api。 您應該使用@RestController而不是@Controller

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM