All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ayongw.thymeleaf.dynamicurl.service.impl.SimpleResourceTranslatorServiceImpl Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package com.github.ayongw.thymeleaf.dynamicurl.service.impl;

import com.github.ayongw.thymeleaf.dynamicurl.dialect.DynamicProcessConf;
import com.github.ayongw.thymeleaf.dynamicurl.service.DynamicResourceLocationService;

/**
 * @author jiangguangtao
 */
public class SimpleResourceTranslatorServiceImpl extends BaseResourceTranslatorServiceImpl {
    public SimpleResourceTranslatorServiceImpl(DynamicProcessConf dynamicProcessConf,
                                               DynamicResourceLocationService dynamicResourceLocationService) {
        super(dynamicProcessConf, dynamicResourceLocationService);
    }

    @Override
    public String translatePath(String contextPath, String requestUrl) {
        return doTranslate(contextPath, requestUrl);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy