我正尝试在已弃用的ManagedBean / ManagedProperty批注上使用CDI,并在一个非常简单的Web应用程序中遇到此异常:
Error creating bean with name 'navigationController': Unsatisfied dependency expressed through field 'message'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException:
No qualifying bean of type 'java.lang.String' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.inject.Inject(), @org.omnifaces.cdi.Param(validatorAttributes=[], validatorMessage=, validators=[], converter=, pathIndex=-1, converterAttributes=[], converterClass=interface javax.faces.convert.Converter, label=, overrideGlobalBeanValidationDisabled=false, required=false, disableBeanValidation=false, name=, validatorClasses=[], converterMessage=, requiredMessage=)}
我正在尝试在http://showcase.omnifaces.org/cdi/Param的OmniFaces展示柜中使用@Param的示例。
我将http://localhost:8080/jsfSpringBootApp/nav.xhtml?message=My+message+from+MessageSource放入页面。据我了解,应该在导航到nav.xhtml的导航上创建NavigationController bean,并且将使用从request参数获取的值填充message字段。
IntellliJ还抱怨@Param批注:
找不到具有@Param资格的bean
感谢您的帮助。我陷入了下一步的尝试。
整个项目位于https://david_maffitt@bitbucket.org/david_maffitt/jsfspringbootapp.git。
nav.xhtml的内容是
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:body >
<f:view>
<p:panel id="myPanelId" header="My Panel" style="margin-bottom:20px">
<h:outputText value="My text output." />
<h:outputText value="My text output from params: #{navigationController.action}" />
</p:panel>
</f:view>
</h:body>
</html>
NavigationController.java的内容是 包org.nrg.cap.jsfWebApp;
import org.omnifaces.cdi.Param;
import javax.enterprise.context.RequestScoped;
import javax.faces.annotation.ManagedProperty;
import javax.inject.Inject;
import javax.inject.Named;
import java.io.Serializable;
//@Component
//@Scope("request")
@Named
@RequestScoped
public class NavigationController implements Serializable {
@Inject @Param
private String message;
public String showPage() {
return ("fubar".equals(message))? "fubar": "snafu";
}
public void setAction(String message) {
this.message = message;
}
public String getAction() {
return message;
}
}
pom.xml是
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.nrg.cap</groupId>
<artifactId>jsfSpringBootApp</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>JSF Spring Boot WebApp</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<joinfaces.version>4.0.0</joinfaces.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>
<relativePath/>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.joinfaces</groupId>
<artifactId>joinfaces-dependencies</artifactId>
<version>${joinfaces.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.joinfaces</groupId>
<artifactId>primefaces-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.joinfaces</groupId>
<artifactId>omnifaces3-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>2.0.SP1</version>
</dependency>
</dependencies>
</project>
我发现我必须添加cdi-api的依赖项,因为我正在部署到没有引入cdi的tomcat 9.0.13。 pom源自joinfaces项目。
答案 0 :(得分:0)
OmniFaces @Param
批注是基于CDI(实现)的批注。而且,尽管Spring可以使用@Named
和@Inject
来代替What is the difference between @Inject and @Autowired in Spring Framework? Which one to use under what condition?中提到的@Component
和@Autowired
,(实际上您需要为其添加'CDI 'api),仍然不能使Spring成为真正的CDI DI容器。
这意味着@Param
不会像OmniFaces / CDI所打算的那样被Spring使用/解释,并且Spring会尝试找到带有@Param
注释的真实bean,这当然是不存在的。因此,您会得到错误消息。
最好的解决方案是超出此问题的范围,因为它“主要基于意见”,但基本上可以归结为两个选择。
我不会说第一个在这里有我的偏好。。。嗯。。。
答案 1 :(得分:-1)
您应该在bean.xml集bean-discovery-mode="all">
中进行更改
https://github.com/armdev/reactive-javaserver-faces/blob/master/reactive-jsf/src/main/webapp/WEB-INF/beans.xml
答案 2 :(得分:-1)
我看起来更深:基于Joinfaces的项目,这意味着项目的基础是Spring Boot。 因此,将CDI用于DI之后。将CDI批注更改为Spring DI-@Inject更改为@Autowired。 将两个不同的DI原则结合在一起不是一个好主意。