|
|
|
@ -4,6 +4,7 @@ import com.gitee.sop.servercommon.configuration.EasyopenDocSupportController; |
|
|
|
|
import com.gitee.sop.servercommon.configuration.EasyopenServiceConfiguration; |
|
|
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
|
import org.springframework.stereotype.Controller; |
|
|
|
|
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @author tanghc |
|
|
|
@ -18,4 +19,10 @@ public class SopConfig extends EasyopenServiceConfiguration { |
|
|
|
|
return "商品API"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void addResourceHandlers(ResourceHandlerRegistry registry) { |
|
|
|
|
//配置映射关系
|
|
|
|
|
registry.addResourceHandler("/opendoc/**").addResourceLocations("classpath:/META-INF/resources/opendoc/"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|