91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mybatis中string和date如何轉換

發布時間:2021-08-06 13:45:50 來源:億速云 閱讀:330 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關mybatis中string和date如何轉換的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

實體里用的java.util.date,數據庫用的是datetime,頁面是字符串<input type="date">。將頁面標簽<input type="date">的內容添加到數據庫

實體

public class BaseInformation {
 
    //信息主鍵
    private String id;
    //信息標題
    private String title;
    //信息類型id(需要在數據字典定義)
    private String typeCode;
    //屬性id(需要在數據字典定義)
    private String propertityId;
    //信息可視范圍,部門可見或者整個單位可見,值是組織結構的id
    private String scope;
    //內容
    private String content;
    //發布人id
    private String releaseId;
    //是否發布,1發布,0保存
    private Integer released;
    //接收人id,對應tb_base_information_receiver的主鍵
    private String receiver;
    //創建時間就是發布時間
    
    private Date createDate;
    //更新時間
    
    private Date updateDate;
    //開始時間
    
    private Date beginDate;
    //結束時間
    
    private Date endDate;
    //定時器,規定什么時候發布信息
   
    private Date timer;

。。。。。省略getter和setter

CREATE TABLE `tb_base_information` (
  `id` varchar(48) NOT NULL,
  `title` varchar(128) DEFAULT NULL COMMENT '標題',
  `type_code` varchar(48) DEFAULT NULL COMMENT '類型id(需要在數據字典定義),公告、新聞等',
  `propertity_id` varchar(48) DEFAULT NULL COMMENT '屬性id(需要在數據字典定義)',
  `scope` varchar(255) DEFAULT NULL COMMENT '信息可視范圍,部門可見或者整個單位可見,值是組織結構的id',
  `content` text COMMENT '內容',
  `release_id` varchar(48) DEFAULT NULL COMMENT '發布人id',
  `released` int(11) DEFAULT NULL COMMENT '是否發送,1發送0保存為草稿',
  `create_date` datetime DEFAULT NULL COMMENT '創建時間',
  `update_date` datetime DEFAULT NULL COMMENT '更新時間',
  `begin_date` datetime DEFAULT NULL COMMENT '信息有效期的起始時間',
  `end_date` datetime DEFAULT NULL COMMENT '信息有效期的結束時間',
  `timer` datetime DEFAULT NULL COMMENT '定時器,指定發送信息的時間',
  `expiry_date` datetime DEFAULT NULL COMMENT '是否永久有效,1是0否',
  `to_top` int(1) DEFAULT NULL COMMENT '信息是否置頂,1置頂,0否',
  `mark_star` int(1) DEFAULT NULL COMMENT '做星標標記用,1在星標公告里顯示,0否',
  `receiver` varchar(48) DEFAULT NULL COMMENT '接收人id,對應tb_base_information_receiver的主鍵',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='信息發布表';

頁面

mybatis中string和date如何轉換

<form name="form" method="post" action="/information/test" enctype="multipart/form-data">  
    類型:<input type="text" name="typeCode" ><br/>
    標題:<input type="text" name="title" ><br/>
    內容:<textarea name="content"  cols="30" rows="10"></textarea><br/>
    創建時間:<input type="date" name="createDate"/><br/>
    更新時間:<input type="date" name="updateDate"/><br/>
    有效期開始時間:<input type="date" name="beginDate"/><br/>
    有效期結束時間:<input type="date" name="endDate"/><br/>
    定時器:<input type="date" name="timer"/><br/>  
    <input type="submit" value="提交"> 
</form>

controller

@RequestMapping("/test")
public String test(BaseInformation baseInformation, HttpServletRequest request) throws Exception {
 
    String id = UUID.randomUUID().toString();
    baseInformation.setId(id);
    //baseInformation.setId(UUID.randomUUID().toString().replaceAll("-",""));
    System.out.println("request.getParameter(createDate)" + request.getParameter("createDate"));
 
    Date createDate = new SimpleDateFormat("yyyy-MM-dd").parse(request.getParameter("createDate"));
    Date updateDate = new SimpleDateFormat("yyyy-MM-dd").parse(request.getParameter("createDate"));
    Date beginDate = new SimpleDateFormat("yyyy-MM-dd").parse(request.getParameter("beginDate"));
    Date endDate = new SimpleDateFormat("yyyy-MM-dd").parse(request.getParameter("endDate"));
    Date timer = new SimpleDateFormat("yyyy-MM-dd").parse(request.getParameter("timer"));
    baseInformation.setCreateDate(createDate);
    baseInformation.setUpdateDate(updateDate);
    baseInformation.setBeginDate(beginDate);
    baseInformation.setEndDate(endDate);
    baseInformation.setTimer(timer);
 
    service.save(baseInformation);
    return "information/test";
}

mybatis中string和date如何轉換

運行結果

mybatis中string和date如何轉換

Field error in object 'baseInformation' on field 'createDate': rejected value [2018-11-08]; codes [typeMismatch.baseInformation.createDate,typeMismatch.createDate,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [baseInformation.createDate,createDate]; arguments []; default message [createDate]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createDate'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [java.util.Date] for value '2018-11-08'; nested exception is java.lang.IllegalArgumentException]
    at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.resolveArgument(ModelAttributeMethodProcessor.java:117)
    at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121)
    at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:158)
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:128)
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:97)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:967)
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:650)
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)

修改方法

修改實體

string和date的類型轉換失敗,此時在實體中,對需要進行轉換的類型添加如下注解,實現java.lang.String和java.util.Date之間自動轉換

@DateTimeFormat(pattern="yyyy-MM-dd")//頁面寫入數據庫時格式化   
@JSONField(format="yyyy-MM-dd")//數據庫導出頁面時json格式化

mybatis中string和date如何轉換

修改contoller

既然java.lang.String和java.util.Date之間可以自動轉換了,后臺就不需要通過request獲取參數來進行轉換,可以將紅方格中的注釋掉

mybatis中string和date如何轉換

依賴添加

1.注解@JsonFormat

  <!--JsonFormat-->
 
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>2.8.8</version>
        </dependency>
 
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.8.8</version>
        </dependency>
 
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-mapper-asl</artifactId>
            <version>1.9.13</version>
        </dependency>

2.注解@DateTimeFormat

@DateTimeFormat的使用和@jsonFormat差不多,首先需要引入是spring還有jodatime,spring我就不貼了

  <!-- joda-time -->
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>2.3</version>
        </dependency>

感謝各位的閱讀!關于“mybatis中string和date如何轉換”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西盟| 望城县| 石嘴山市| 康乐县| 龙陵县| 平凉市| 山丹县| 六盘水市| 蓝山县| 灯塔市| 呼图壁县| 新乡县| 清丰县| 易门县| 鄯善县| 依安县| 朔州市| 孟津县| 西安市| 大城县| 富阳市| 舞钢市| 祁阳县| 米林县| 大邑县| 龙州县| 枝江市| 资中县| 信阳市| 余干县| 鄱阳县| 潜山县| 民丰县| 宝兴县| 沂南县| 沽源县| 临桂县| 温州市| 珠海市| 涟水县| 太和县|