gpt4 book ai didi

java - 为什么类型转换会发生这种情况?

转载 作者:行者123 更新时间:2023-12-01 14:18:17 25 4
gpt4 key购买 nike

我是 springMVC 的新手,今天我写了一个 DateConverter像这样

public class DateConverter implements Converter<String,Date>{

private String formatStr = "";

public DateConverter(String fomatStr) {
this.formatStr = formatStr;
}

public Date convert(String source) {
SimpleDateFormat sdf = null;
Date date = null;
try {
sdf = new SimpleDateFormat(formatStr);
date = sdf.parse(source);
} catch (ParseException e) {
e.printStackTrace();
}
return date;

}
}

然后我写一个像这样的 Controller

@RequestMapping(value="/converterTest") 
public void testConverter(Date date){
System.out.println(date);
}

将其配置到 applicationContext,当我使用测试转换器时,我确信 DateConverter 已正确初始化

http://localhost:8080/petStore/converterTest?date=2011-02-22

the browser says:
HTTP Status 400 -
type Status report
message
description The request sent by the client was syntactically incorrect ().

有人可以帮我吗?提前致谢

最佳答案

您的转换器中有拼写错误。您拼错了构造函数参数,因此赋值无效。而不是:

public DateConverter(String fomatStr) {
this.formatStr = formatStr;
}

尝试:

public DateConverter(String formatStr) {
this.formatStr = formatStr;
}

可能还有其他问题,但至少您需要解决该问题。我假设您使用 yyyy-MM-dd 作为日期格式?

关于java - 为什么类型转换会发生这种情况?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17914390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com