Spring MVC自定义EL函数格式化字符串时出错

时间:2013-07-10 18:53:59

标签: java spring-mvc

我正在使用Spring并构建一个Web应用程序。我正在创建一个自定义EL函数,我正在尝试格式化一个从1234567890到123-456-7890输出的字符串的电话号码。

我测试了方法' phoneFormat'在一个独立的Java应用程序中传递一个字符串,ex" 3101234567",并且它正确地格式化了它。当我在phones.jsp中使用它时,我正在传递' phone.number' 我可以通过电话。按照我的方式打电话 - $ {myTags:phoneFormat(phone.number)}?

您可以在下面看到我正在使用的文件。 您是否发现任何错误导致无法正常工作?当我加载该页面时,它当前根本不会显示电话号码。

/StudentWebMVC/src/main/webapp/WEB-INF/views/personal/phones.jsp 这是我输出电话号码的文件的一部分

<c:otherwise>
<div>
<%@ taglib prefix="myTags" uri="/WEB-INF/tags/functions.tld" %>
${myTags:phoneFormat(phone.number)} *this is how I am trying to format the phone number to 123-456-7890 output* 
<%-- ${phone.number} --%> *this is how it is currently, it outputs the number to the screen*
</div>
<c:if test="${phone != null && type == 'personal' }">
<div>Send emergency text messages: <spring:message code="studentContact.emergency.notification.${phone.notificationFlag}" /></div>
</c:if>
</c:otherwise>

/StudentWebMVC/src/main/webapp/WEB-INF/functions.tld

<?xml version="1.0" encoding="UTF-8" ?>
<taglib 
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
    version="2.1">

    <display-name>phoneFormatUtil</display-name>    
    <tlib-version>1.0</tlib-version>
    <short-name>myPhoneFormat</short-name>
<uri>/StudentWebMVC/src/main/webapp/WEB-INF/tags/functions.tld</uri>


    <function>
        <name>phoneFormat</name>
        <function-class>/StudentWebMVC/src/main/java/edu/dt/studentweb/mvc/utils/PhoneFormatUtil.phoneFormat</function-class>
        <function-signature>java.lang.String phoneFormat(java.lang.String)</function-signature>
    </function>
</taglib>

/StudentWebMVC/src/main/java/edu/dt/studentweb/mvc/utils/PhoneFormatUtil.java

public final class PhoneFormatUtil {
    static String exStr;
    public static java.lang.String phoneFormat(java.lang.String str)  {

        MaskFormatter mf;
        try {
            mf = new MaskFormatter("###-###-####");
            mf.setValueContainsLiteralCharacters(false);
            exStr = mf.valueToString(str);
        } 
        catch (ParseException e) {
            e.printStackTrace();
        }
        return exStr;
    }
}

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

你的functions.tld中的

<function-class>似乎错了。试试<function-class>edu.dt.studentweb.mvc.utils.PhoneFormatUtil</function-class>