You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
327 B
Java
9 lines
327 B
Java
package com.jingcheng.cms.constants;
|
|
|
|
public class AppConstant {
|
|
// 这里的files和下面FILE_MAP的files要一致
|
|
public final static String FILE_URL = "http://localhost:8888/upload/";
|
|
public final static String FILE_MAP = "/upload/**";
|
|
public final static String FILE_PATH = "D:/documentManager/upload/";
|
|
}
|