我想使用自定义注释'T9n'来使用String标签注释类属性。我宁愿这样做,而不是引用一个对属性有弱引用的messages.properties文件(刚刚在JSP页面中定义)。我想做点什么:
注释:
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface T9n {
String value();
}
类别:
public class MyClass {
@T9n("My Variable")
private String variableName;
}
JSP(Spring表单JSTL标记):
<form:label path="variableName"><!-- Access T9n annotation here --></form:label>
<form:input path="variableName" />
这可能吗?我现在的想法是使用自定义JSP标记做一些事情,我找不到搜索的任何内容。
答案 0 :(得分:1)
我最终实现了自定义标记。我找到了一篇很好的文章来定义这里的步骤:
http://www.codeproject.com/Articles/31614/JSP-JSTL-Custom-Tag-Library
我获取T9n值的Java代码是:
public class T9nDictionaryTag extends TagSupport {
private String fieldName;
private String objectName;
public int doStartTag() throws JspException {
try {
Object object = pageContext.getRequest().getAttribute(objectName);
Class clazz = object.getClass();
Field field = clazz.getDeclaredField(fieldName);
if (field.isAnnotationPresent(T9n.class)) {
T9n labelLookup = field.getAnnotation(T9n.class);
JspWriter out = pageContext.getOut();
out.print(labelLookup.value());
}
} catch(IOException e) {
throw new JspException("Error: " + e.getMessage());
} catch (SecurityException e) {
throw new JspException("Error: " + e.getMessage());
} catch (NoSuchFieldException e) {
throw new JspException("Error: " + e.getMessage());
}
return EVAL_PAGE;
}
public int doEndTag() throws JspException {
return EVAL_PAGE;
}
public void setFieldName(String fieldName) {
this.fieldName = fieldName;
}
public void setObjectName(String objectName) {
this.objectName = objectName;
}
}
所以它现在在我的JSP中看起来像这样:
<form:label path="variableName"><ct:t9n objectName="myObject" fieldName="variableName" /></form:label>
<form:input path="variableName" />
希望这会在某些时候帮助别人
@Holger - 我本可以使用嵌入式Java代码,但这看起来很混乱,不利于表示级别的分离。