简体   繁体   中英

Copying file from one location to another location

would like to copy files from one location to another location in spring MVC web application, how to configure the path and read the path in a web appplication.

Thanks,

There is a tag in your web.xml (or must be) that you can specify where your spring configurations are. The tag is < context-param >

Here I give you an example:

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
        /WEB-INF/applicationContext-hibernate.xml
        /WEB-INF/spring/applicationContext-security.xml
    </param-value>
</context-param>


The former configuration is in the WEB-INF folder,
and the latter is in the WEB-INF/spring (as you may have noticed).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM