- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正如我在这里读到的:
正如我在其他问题中看到的那样,如 this one ,我在我的 Controller 中注册一个 StringTrimmerEditor,如下所示:
@Controller
public class MyController{
@InitBinder
public void initBinder(WebDataBinder binder)
{
binder.registerCustomEditor(StringTrimmerEditor.class,new StringTrimmerEditor(false));
}
它编译并运行,但不起作用,它不修剪数据。我不知道我错过了什么。任何人?
谢谢
最佳答案
javadoc救援:
public void registerCustomEditor(Class requiredType, PropertyEditor propertyEditor)
Description copied from interface: PropertyEditorRegistry
Register the given custom property editor for all properties of the given type.
Specified by:
registerCustomEditor in interface PropertyEditorRegistry
Parameters:
requiredType - the type of the property
propertyEditor - the editor to register
该类不应该是编辑器的类。它应该是您希望编辑器应用的字段的类型:String.class
关于java - Spring StringTrimmerEditor 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8649833/
正如我在这里读到的: http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/portlet.
我正在使用 Spring 的 registerCustomEditor 来修剪所有前导/尾随空格,但我不希望它在特定字段上执行,例如密码字段。 @ControllerAdvice public cla
这是我的 applicationContext.xml 的样子: ............
我是一名优秀的程序员,十分优秀!