【发布时间】:2019-10-10 07:24:51
【问题描述】:
当预期值为 NULL 时,绑定到 bean String 类型的空表单输入字段作为空字符串 ("") 接收。
这是一个老问题,似乎在每个版本的 Oracle EL 或 Apache EL 或 Tomcat 中都会重现。
@BalusC 已多次解决此问题。 Empty String Madness、Tomcat 8 (and 9) coerce behaviour, null strings are incorrectly set as empty strings 是几个例子。
我已经尝试了所有以前的解决方法,但都没有成功。
someform.xhtml
<h:form>
<h:outputText value="Some Input: " />
<p:inputText value="#{someBean.stringVariable}" />
<p:commandButton id="search-button"
value="Search"
actionListener="#{someBean.doSearch}" />
</form>
SomeBean.java
private String stringVariable;
// Setter & Getter
public void doSearch()
{
if(stringVariable == null)
{
System.out.println("Input is NULL");
}
else if(stringVariable.equals(""))
{
System.out.println("Input is EMPTY STRING");
}
}
faces-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<faces-config
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_3.xsd"
version="2.3">
<application>
<el-resolver>com.example.EmptyToNullStringELResolver</el-resolver>
</application>
<application>
<resource-handler>org.jepsar.primefaces.theme.jepsar.FontAwesomeResourceHandler</resource-handler>
<resource-handler>org.omnifaces.resourcehandler.UnmappedResourceHandler</resource-handler>
</application>
<application>
<el-resolver>
org.primefaces.application.exceptionhandler.PrimeExceptionHandlerELResolver
</el-resolver>
</application>
<factory>
<exception-handler-factory>
org.primefaces.application.exceptionhandler.PrimeExceptionHandlerFactory
</exception-handler-factory>
</factory>
</faces-config>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<context-param>
<param-name>javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name>
<param-value>com.sun.el.ExpressionFactoryImpl</param-value>
</context-param>
</web-app>
当我使用自定义 EmptyToNullStringELResolver 方法时,会抛出 NPE。
java.lang.NullPointerException
at org.apache.myfaces.shared.resource.ValueExpressionFilterInputStream.read(ValueExpressionFilterInputStream.java:130)
at java.io.InputStream.read(InputStream.java:179)
at java.nio.channels.Channels$ReadableByteChannelImpl.read(Channels.java:385)
at org.omnifaces.util.Utils.stream(Utils.java:397)
at org.omnifaces.resourcehandler.UnmappedResourceHandler.handleResourceRequest(UnmappedResourceHandler.java:176)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:196)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)
at ...
将最新的 EL jar 从 Oracle 放入 WEB/lib 似乎没有任何效果。 (javax.el-3.0.1-b11.jar)
谢谢你, 泰德S
【问题讨论】:
-
EmptyToNullStringELResolver和 Oracle EL 不需要同时完成。只做一个或另一个很好。你能试试吗? NPE 是否仍然被抛出并且在两种方法上都完全相同?堆栈跟踪至少表明在您的一个 CSS 资源中某处有一个#{...}表达式,它实际上解析为null。 -
感谢@BalusC。仅使用 EmptyToNullStringELResolver 解决了 String -> NULL 问题。至于我不知道的实际问题,我的一个样式表引用了一个丢失的图像文件。请问堆栈跟踪中的什么提示您?再次,非常感谢。
-
像往常一样从下往上读取类/方法名称..处理资源请求..流..读取值表达式..砰,有些东西是空的!