0

所以,我是一个真正的java初学者..我正在做一个有很多工作和研究的应用程序......

事情是。我需要用 multipart/form-data 发布一些信息……我以前用 Json HashMap 来做。但不知道改用哪个对象......这是我的动作控制器帖子:

HashMap<String, ContentDTO> cnt = new HashMap<String, ContentDTO>();

        ContentDTO contentDTO = new ContentDTO();
        contentDTO.setExternal_id("CNT1");
        contentDTO.setTemplate_type_id(103);
        contentDTO.setChannel_id("CHN1");
        contentDTO.setTitle("Conteudo1");
        contentDTO.setText("Conteudo teste 1");
        RulesDTO rules = new RulesDTO();
        SimpleDateFormat publish_date = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss-SSS");
        java.util.Date pdate = publish_date.parse("2012-12-28 11:18:00-030");
        java.sql.Timestamp pubdate = new java.sql.Timestamp(pdate.getTime());
        rules.setPublish_date(pubdate);
        SimpleDateFormat expiration_date = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss-SSS");
        java.util.Date edate = expiration_date.parse("2013-12-28 11:18:00-030");
        java.sql.Timestamp expdate = new java.sql.Timestamp(edate.getTime());
        rules.setExpiration_date(expdate);
        rules.setNotify_publish(true);
        rules.setNotify_expiration(false);
        rules.setHighlihted(true);

        contentDTO.setRules(rules);

        InteractionsDTO interactions = new InteractionsDTO();
        interactions.setAllow_comment(true);
        interactions.setAuto_download(false);

        contentDTO.setInteractions(interactions);


        cnt.put("content",contentDTO);




        HttpEntity<HashMap<String, ContentDTO>> request = new HttpEntity<HashMap<String, ContentDTO>>(cnt, httpHeaders);

谁能帮帮我??

4

1 回答 1

1

由于您需要使用 multipart 上传,我认为您必须使用 File 对象,特别是 Spring 的MultipartFile

使用 Spring 你必须使用 Spring Controllers 在 UI 层工作,没有必要管理 HttpEntity。只需在配置文件中声明多部分解析器。

<beans>
<bean id="multipartResolver"
    class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>
<!-- Declare explicitly, or use <context:annotation-config/> -->
<bean id="fileUploadController" class="examples.FileUploadController"/>

</beans>

这是从官方 Spring 3 文档中提取的。您可以查看一些示例。这里我再给大家介绍一些:Spring 3 文件上传示例Spring MVC 文件上传

最后,我建议您使用 MVC 模式。不要创建 DTO 并在 UI 层中使用它的访问器,而是在业务层中创建一个 Service 或 Facade 来执行此操作。

于 2013-01-10T14:22:10.453 回答