SpringMVC实现文件上传到Tomcat指定目录(包含pojo提交)

本文介绍如何使用SpringMVC实现在Tomcat服务器上实现文件上传,包括配置文件、Pojo处理、页面设计及Controller处理器的详细步骤。上传的文件会被重命名为UUID并存储在指定目录下。
摘要由CSDN通过智能技术生成
这段时间一直在考虑毕业设计的事,在注册上面可能会设计到文件上传,因此看了一下spring的官方文档中有相关的内容,整理了一下与大家分享,第一次写博文

也会有一些不合理的地方,希望大家指正。


文件上传demo的目录结构


   1、在spring中我感觉最重要的就是配置文件,所以优先把配置文件说明一下(命名是按照spring的默认的命名方式,放在WEB-INF目录下)

        即图中的  mvc-servlet.xml

        

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:context="http://www.springframework.org/schema/context"
 xmlns:tx="http://www.springframework.org/schema/tx"
 xmlns:p="http://www.springframework.org/schema/p"
 xmlns:mvc="http://www.springframework.org/schema/mvc"
 xsi:schemaLocation="
    http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-4.1.xsd
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd"
    default-autowire="byName" default-lazy-init="true">
    <!-- 启用注解 -->
    <mvc:annotation-driven/>
    <!-- 扫描的处理器(Controller)的包 -->
    <context:component-scan base-packa
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值