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

group.rober.base.dict.controller.DictAdminController Maven / Gradle / Ivy

The newest version!
package group.rober.base.dict.controller;

import group.rober.base.dict.service.DictAdminService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.io.File;

@RestController
@RequestMapping("/devtool/dict")
public class DictAdminController {

    @Autowired
    DictAdminService dictAdminService;

    @PostMapping("/dbTransferFile")
    public String dbTransferFile(){
        File path = dictAdminService.getDictDataDirectory();
        dictAdminService.dbTransferFile(path);
        return path.getAbsolutePath();
    }

    @PostMapping("/fileTransferDb")
    public int fileTransferDb(){
        Integer result = dictAdminService.fileTransferDB();
        dictAdminService.clearDictCache();
        return result;
    }

    @PostMapping("/clearDictCache")
    public int clearDictCache(){
        dictAdminService.clearDictCache();
        return 1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy