我用这张唱片做了一个春季项目。我需要在我的课堂上自动运行它,但我不能再运行spring boot应用程序了。原因 Parameter 0 of constructor in sk.eea.jira.rest.Issue 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. @Component
public r
Java16引入了Records,这有助于在编写携带不可变数据的类时减少样板代码。当我尝试使用记录作为@ConfigurationProperties bean时,如下所示,我得到以下错误消息: @ConfigurationProperties("demo")
public record MyConfigurationProperties(
String myProperty
) {
} ***************************
APPLICATION FAILED TO START
***************************
De
我想用cmd行中提供的字符串参数值创建一个bean
@Configuration
public class SpringConfig {
@Bean
public DataProvider getDataProvider(String filePath, String mnhPath) throws Exception {
return new DataProvider(filePath, mnhPath);
}
}
@SpringBootApplication
public class SomeApplication implements Com
我得到了以下错误:
equired a bean of type 'java.lang.String' that could not be found.
08-Dec-2021 06:49:02 [sshexec]
08-Dec-2021 06:49:02 [sshexec] The injection point has the following annotations:
08-Dec-2021 06:49:02 [sshexec] - @org.springframework.beans.factory.annotation.Autowir
我正在尝试自定义NamingProxy中的一些函数,以便可以排除特定的服务器,这些服务器也需要注册到naco中。 但面临一些问题: ***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in com.gof.springcloud.loadbalancer.CustomNamingProxy required a bean of type 'java.lang.String' th
我是Spring的新手,我想知道这个错误消息。
我正在尝试创建一个GraphQL类来连接到各种GraphQL配置,并且我希望将一个值传递给构造函数(最终用于类路径):
public class ArticleResource {
@Autowired
GraphQLService graphQLService = new GraphQLService("classpath:articles.graphql");
... other code
}
public class GraphQLService {
public GraphQLServ
我有一个用Groovy编写的小型Spring测试项目,它是用Gradle构建的。当试图运行时
spring run src/com/eval/EvalMain.groovy src/com/eval/InputObj.groov
我收到
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in com.eval.InputObj required a bean of type 'java.
我今天已经跟这个吵了好几个小时了。我从的文档开始,它实际上并没有提到具体的步骤。它只是说开发人员可以包含Bean,然后自动添加MailSender。我已经尝试了很多变体,但没有能够让它使用。最后,我采用了直接包含和手动配置类的方法。
下面是一个简单的项目,演示了我尝试过的内容:
这个项目编译,但当我运行它时,我得到:
Parameter 0 of constructor in com.example.awssestest.AwsSesTestApplication required a bean of type 'org.springframework.mail.MailSender&
我希望通过本教程将spring-boot-admin-starter client注册到spring-boot-admin-server中:。
但是运行后我会出错:
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 2 of method applicationFactory in de.codecentric.boot.admin.config.SpringBootAdminClientAutoConfiguration re
我使用的是Spring Boot 2.5.4,并尝试从属性初始化一个不可变的类: @Configuration
@ConfigurationProperties("test")
public class Config {
public final String foo;
@ConstructorBinding
public Config(String foo) {
this.foo = foo;
}
} application.yml: test:
foo: bar 主类: @SpringBootApplicati
我尝试从以下位置运行示例应用程序:
我收到错误消息:
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 1 of method setKeycloakSpringBootProperties in org.keycloak.adapters.springboot.KeycloakBaseSpringBootConfiguration required a bean of type 'org.keycloak.adapt
我有一个Kotlin数据类,我想从application.yml文件中读取属性。下面是我的数据类: @ConstructorBinding
@ConfigurationProperties("meanwhile.in.hell.myapp")
data class MyAppProperties(val serverId: String, val locationId: String) 然后我将它添加到我的configuration类中: @Configuration
@EnableConfigurationProperties(MyAppProperties::class)
我添加了optaplanner-spring-boot-starter依赖于Spring 应用程序,但是在Intellij上没有找到注入的SolverManager和ScoreManager bean。
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of method myBusinessBeanAPI in
mypackage.MyRestResource required a bean
of type '
我正试图给我的读者发送参数。
public JpaPagingItemReader<Person> reader(@Value("#{jobParameters['PersonId']}")
String id){
JpaPagingItemReader<Person> reader = new JpaPagingItemReader<Person>();
reader.setEntityManagerFactory(emf);
reader.setQueryString("SELECT p f
我试图通过使用批注@Repository扩展CRUD存储库来创建接口。另外,我尝试使用自动连线注释在Service类中使用接口函数。但我现在面临的问题是
***************************
APPLICATION FAILED TO START
***************************
Description:
Field bookRepository in com.example.service.BookService required a bean of type 'com.example.repo.BookRepository' th
Spring版本1.5.4。
正常运行应用程序可以正常工作。
在运行单元测试时,缺少一些bean,例如:
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in ...service.post.PostService required a bean named 'mongoTemplate' that could not be found.
Action:
Consider
我将DAO重新配置为一种更方便的方式(通过使用JpaRepository),而不是手工执行所有的样板代码。但是现在每当我启动Spring应用程序时,它都会给出以下错误:
APPLICATION FAILED TO START
Description:
Field userRepository in DAO.UserDAOService required a bean of type 'DAO.UserRepository' that could not be found.
The injection point has the following annota
我已经构建了一个,它使用ComponentScan来识别Spring。在应用程序启动时,我收到消息
Parameter <X> of constructor in <BEANUSER> required a bean of type '<BEAN>' that could not be found.
在同一个包中,我定义了<BEAN>,还有其他几个Spring,它们都可以找到并注入。但是,从来不调用BEAN的构造函数。BEAN的简单名称是TransactionManager。
我检查了所有注释,它们与bean类似。
怎么啦?
我有CustomerRepository。当它只是class时,它就会自动进入其他类。当我到达abstract class时,它会给我一个错误:
Field customerRepository in com.xxx.service.CustomerService required a bean of type 'com.xxx.repository.CustomerRepository' that could not be found.
我是JavaEE的新手,我一直在做一个简单的Springboot项目。每次我运行它时,我都会得到这样的错误:
请随时回答我的问题,并在代码中的任何改进是高度赞赏。
Field sessionFactory in com.example.dao.CartDaoImpl required a bean of type 'org.hibernate.SessionFactory' that could not be found.
Action:
Consider defining a bean of type 'org.hibernate.SessionFactory
虽然我已经在pom.xml中添加了包含我的GemDaoImpl存储库类的包,但它给出了错误: Parameter 0 of constructor in com.bfm.accounting.portfolio.controller.PortfolioApiController required a bean of type 'com.bfm.app.reporting.gem.dao.impl.GemDaoImpl' that could not be found.
Action:
Consider defining a bean of type 'co
Description:
Field am in wow.service.AdminServiceImpl required a bean of type 'wow.mapper.AdminMapper' that could not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of
我试图通过构造函数自动生成一个类。
@Component
public class Test<T extends Something>{
@Autowired
public Test(Class<T> entity)
doSomething(enity);
}
...
当我运行代码时,我一直会收到错误消息。
Parameter 0 of constructor in com.test.Test required a bean of type 'java.lang.Class' that could not be found.
Action:
Consi
我刚读过
我正试着像这样实现它。但我总是
Field mongoClient in MorphiaAutoConfiguration required a bean of type 'com.mongodb.MongoClient' that could not be found.
如果我正确理解了文档,MongoAutoConfiguration就应该自动创建一个MongoAutoConfiguration bean。因为我没有禁用这个配置,所以应该加载它,因为我的主类上有我的@SpringBootApplication注释。我的错误在哪里?
我对弹跳力很陌生。
我的服务(Kotlin)的迁移遵循在工作中编写的指南。得到了这个奇怪的异常却找不到任何文档。
Parameter 3 of method multipleOpenApiResource in org.springdoc.webflux.core.MultipleOpenApiSupportConfiguration required a bean of type 'org.springdoc.core.GenericResponseService' that could not be found.
Action:
Consider defining a
Main:
@SpringBootApplication
@ComponentScan(basePackageClasses = Application.class)
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
考试班:
public class Test {
@Bean
public Test test(){
return new Test();
}
我正在将一个EJB项目迁移到Spring boot项目。我已经成功地将其他批注替换为spring批注,但SessionContext对象有问题。我的遗留代码如下
@Resource
SessionContext sessionContext;
.....
if (some condition) {
sessionContext.setRollbackOnly();
return false;
}
对于这段代码,我得到了以下错误
A component required a bean of type 'javax.ejb.SessionContext' that
在我的Vaadin和Spring应用程序中,我已经从jOOQ 3.14.12更新到3.15.0。在此更新之后,我的应用程序将不再启动。这是我得到的错误:
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in org.komunumo.data.service.MemberService required a bean of type 'org.jooq.DSLContext'