我正在尝试使用 Spring MVC、Java 和 MySql 在我的 webapp 中实现完整的日历插件。当我尝试在我的 jsp 中使用“input type = date”添加日期时出现此错误:
Field error in object 'event' on field 'endDate': rejected value [2018-03-13];
codes [typeMismatch.event.endDate,typeMismatch.endDate,typeMismatch.java.util.Date,typeMismatch];
arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [event.endDate,endDate]; arguments [];
default message [endDate]]; default message [Failed to convert property value of type 'java.lang.String'
to required type 'java.util.Date' for property 'endDate'; nested exception is org.springframework.core.convert.ConversionFailedException:
Failed to convert from type java.lang.String to type @org.springframework.format.annotation.DateTimeFormat
java.util.Date for value '2018-03-13';
nested exception is java.lang.IllegalArgumentException: Unable to parse '2018-03-13']
在我的 Controller 类中,我使用 SimpleDateFormat 来格式化我的日期:
@RequestMapping(value = "add", method = RequestMethod.POST)
public String add(@ModelAttribute("event") Event event,
HttpServletRequest request,ServletRequestDataBinder binder,
ModelMap modelMap){
try{
SimpleDateFormat simpleDateFormat = new SimpleDateFormat ("dd/MM/yyyy");
event.setStartDate(simpleDateFormat.parse(request.getParameter("startDate")));
event.setEndDate(simpleDateFormat.parse(request.getParameter("endDate")));
eventService.create(event);
return "redirect:../event.html";
}catch (Exception e){
modelMap.put("event", event);
return "event/index";
}
}
最后在我的 Jsp 中:
<fieldset>
<legend>Event Information</legend>
<s:form method ="post" commandName = "event"
action="${pageContext.request.contextPath }/event/add.html">
<table>
<tr>
<td>Name</td>
<td><s:input path = "name"/></td>
</tr>
<tr>
<td valign = "top">Description</td>
<td><s:textarea path = "description" cols = "20" rows = "5" /></td>
</tr>
<tr>
<td>Start Date</td>
<td><input type = "date" name = "startDate" /></td>
</tr>
<tr>
<td>End Date</td>
<td><input type = "date" name = "endDate" /></td>
</tr>
<tr>
<td> </td>
<td><input type = "submit" value = "Save" /></td>
</tr>
</table>
</s:form>
</fieldset>
这是 DAO 实现:
@Repository("eventDAO")
public class EventDAOImpl implements EventDAO{
@Autowired
private SessionFactory sessionFactory;
@SuppressWarnings("unchecked")
@Override
public List<EventEntity> findAll() {
List <EventEntity> list = null;
Session session = null;
Transaction transaction = null;
try{
session = sessionFactory.openSession();
transaction = session .beginTransaction();
list = session.createQuery("select e.id as id, "
+ "e.name as title, "
+ "DATE_FORMAT(e.startDate, '%Y-%m-%d') as start, "
+ "DATE_FORMAT(e.endDate, '%Y-%m-%d') as end "
+ "from Event e")
.setResultTransformer(
Transformers.aliasToBean(EventEntity.class))
.list();
transaction.commit();
}catch(Exception e){
list = null;
if(transaction != null){
transaction.rollback();
}
}finally{
session.close();
}
return list;
}
在我的实体类中,我将变量保存为日期,所以它是
private Date endDate;
我认为问题出在日期的解析上,但我不确定!对此问题的任何解释将不胜感激。
最佳答案
@ModelAttribute("event") Event event将使 Spring 尝试绑定(bind)请求值 2018-03-13到 private Date endDate场内Event类型。您的转换代码不会被调用,因为错误发生在 add 之前方法被调用。
您需要使用 PropertyEditor 定义全局转换逻辑或 Converter如所述here或使用 org.springframework.format.annotation.DateTimeFormat指定每个日期字段的格式:
@DateTimeFormat(pattern = "yyyy-MM-dd")
// or use @DateTimeFormat(pattern = DateTimeFormat.ISO.DATE)
private Date endDate;
关于java - 无法将类型 'java.lang.String' 的属性值转换为所需类型 'java.util.Date',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49257362/
我正在尝试设置一个puppet节点,但rubygems似乎不正常。如果我通过它自己的二进制文件(/usr/lib/ruby/gems/1.8/gems/facter-1.5.8/bin/facter)在cli上运行facter,它工作正常,但如果我通过由rubygems(/usr/bin/facter)安装的二进制文件,它抛出:/usr/lib/ruby/1.8/facter/uptime.rb:11:undefinedmethod`get_uptime'forFacter::Util::Uptime:Module(NoMethodError)from/usr/lib/ruby
我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我希望我的UserPrice模型的属性在它们为空或不验证数值时默认为0。这些属性是tax_rate、shipping_cost和price。classCreateUserPrices8,:scale=>2t.decimal:tax_rate,:precision=>8,:scale=>2t.decimal:shipping_cost,:precision=>8,:scale=>2endendend起初,我将所有3列的:default=>0放在表格中,但我不想要这样,因为它已经填充了字段,我想使用占位符。这是我的UserPrice模型:classUserPrice回答before_val
我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在
我在我的项目中添加了一个系统来重置用户密码并通过电子邮件将密码发送给他,以防他忘记密码。昨天它运行良好(当我实现它时)。当我今天尝试启动服务器时,出现以下错误。=>BootingWEBrick=>Rails3.2.1applicationstartingindevelopmentonhttp://0.0.0.0:3000=>Callwith-dtodetach=>Ctrl-CtoshutdownserverExiting/Users/vinayshenoy/.rvm/gems/ruby-1.9.3-p0/gems/actionmailer-3.2.1/lib/action_mailer
我有一个包含模块的模型。我想在模块中覆盖模型的访问器方法。例如:classBlah这显然行不通。有什么想法可以实现吗? 最佳答案 您的代码看起来是正确的。我们正在毫无困难地使用这个确切的模式。如果我没记错的话,Rails使用#method_missing作为属性setter,因此您的模块将优先,阻止ActiveRecord的setter。如果您正在使用ActiveSupport::Concern(参见thisblogpost),那么您的实例方法需要进入一个特殊的模块:classBlah
我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r
在MRIRuby中我可以这样做:deftransferinternal_server=self.init_serverpid=forkdointernal_server.runend#Maketheserverprocessrunindependently.Process.detach(pid)internal_client=self.init_client#Dootherstuffwithconnectingtointernal_server...internal_client.post('somedata')ensure#KillserverProcess.kill('KILL',