Thymeleaf TemplateInputException при загрузке HTML-страницы - PullRequest
0 голосов
/ 12 ноября 2018

У меня есть html-страница, где я использую jquery для загрузки содержимого страницы из весеннего загрузочного приложения

вот структура проекта

structure of my project

Я использую zuul в качестве прокси. Я уверен в конфигурации Zuul Eureka в моем проекте

Когда я пытаюсь получить доступ к странице корневого проекта (facturation.html), вызвав в браузере localhost: 9999 / facturationЯ получаю следующее исключение

org.thymeleaf.exceptions.TemplateInputException: произошла ошибка во время синтаксического анализа шаблона (шаблон: «корневая папка, в которой находятся все файлы thymeleaf files / facturation.html»)

Причина: java.io.FileNotFoundException: ресурс ClassLoader «корневая папка, в которой не удалось разрешить все файлы thymeleaf..6.RELEASE.jar: 3.0.6.RELEASE] at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse (AbstractMarkupTemplateParser.java:223) ~ [thymeleaf-3.0.6.RELEASE.jar: 3.0.6.RELEASE]

java.io.FileNotFoundException: ресурс ClassLoader «корневая папка, в которой находятся все файлы thymeleaf files / facturation.html»не может быть решена

Мой контроллер пружины такой, как показано ниже

    @Controller
    public class LandingController {


        private static final Logger log = LoggerFactory.getLogger(LandingController.class);





        @Autowired
        private AppClientFeign appClientFeign;

        @Autowired
        private UserClientFeign userClientFeign;


        @RequestMapping("/")
        String home(Model model,Principal principal) {
            List<Menu> appMenus = appClientFeign.getAppMenus("facturation");
            model.addAttribute("applications", appClientFeign.getApps());
            model.addAttribute("applicationsHistory", appClientFeign.getAppsHistory(principal.getName()));
            model.addAttribute("currentUser", userClientFeign.getUserDetails(principal.getName()));
            if(log.isDebugEnabled()) {
                StringBuilder stringBuilder2 = new StringBuilder();
                stringBuilder2.append(appMenus);
                stringBuilder2.append("");
                log.debug(stringBuilder2.toString());
            }
            model.addAttribute("menuV", appMenus);
            model.addAttribute("addClientObject", AddClientDTO.builder().build());
            StringBuilder stringBuilder = new StringBuilder();
            stringBuilder.append(" hello world ****************** ---------------------- ************************ \n \n \n");
            stringBuilder.append(appClientFeign.getApps());
            if(log.isDebugEnabled())log.debug(stringBuilder.toString());
            return "facturation";
        }
    @RequestMapping("/html/{page}")
    String resolveHTML(Model model,Principal principal,@PathVariable String page) {
        List<Menu> appMenus = appClientFeign.getAppMenus("facturation");
        model.addAttribute("applications", appClientFeign.getApps());
        model.addAttribute("applicationsHistory", appClientFeign.getAppsHistory(principal.getName()));
        model.addAttribute("currentUser", userClientFeign.getUserDetails(principal.getName()));
        if(log.isDebugEnabled()) {
            StringBuilder stringBuilder2 = new StringBuilder();
            stringBuilder2.append(appMenus);
            stringBuilder2.append("");
            log.debug(stringBuilder2.toString());
        }
        model.addAttribute("menuV", appMenus);
        model.addAttribute("addClientObject", AddClientDTO.builder().build());
        StringBuilder stringBuilder = new StringBuilder();
        stringBuilder.append(" hello world ****************** ---------------------- ************************ \n \n \n");
        stringBuilder.append(appClientFeign.getApps());
        if(log.isDebugEnabled())log.debug(stringBuilder.toString());
        return page;
    }

    @RequestMapping("/html/{folder}/{page}")
    String resolveHTML(Model model,Principal principal,@PathVariable String page,@PathVariable String folder) {
        List<Menu> appMenus = appClientFeign.getAppMenus("facturation");
        model.addAttribute("applications", appClientFeign.getApps());
        model.addAttribute("applicationsHistory", appClientFeign.getAppsHistory(principal.getName()));
        model.addAttribute("currentUser", userClientFeign.getUserDetails(principal.getName()));
        if(log.isDebugEnabled()) {
            StringBuilder stringBuilder2 = new StringBuilder();
            stringBuilder2.append(appMenus);
            stringBuilder2.append("");
            log.debug(stringBuilder2.toString());
        }
        model.addAttribute("menuV", appMenus);
        model.addAttribute("addClientObject", AddClientDTO.builder().build());
        StringBuilder stringBuilder = new StringBuilder();
        stringBuilder.append(" hello world ****************** ---------------------- ************************ \n \n \n");
        stringBuilder.append(appClientFeign.getApps());
        if(log.isDebugEnabled())log.debug(stringBuilder.toString());
        return folder+"/"+page;
    }

}

Моя страница facturation.htl

<!DOCTYPE HTML>
<html lang="fr">
<head>
    <meta charset="UTF-8"/>
    <title>Facturation - MDS</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/loader.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/main.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/facturation.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/chart.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/menus.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/grid.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/tab.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/notify.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/print.js"></script>
    <script src="http://localhost:9999/MDS-WEB-RESSOURCE/js/check.js"></script>
    <script onloadstart="loadAdditionalData()" src="http://localhost:9999/MDS-WEB-RESSOURCE/js/facturationLoader.js"></script>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/main.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/facturation.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/chart.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/grid.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/tab.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/notify.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/menus.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/dropdown.css"/>
    <link rel="stylesheet" type="text/css" href="http://localhost:9999/MDS-WEB-RESSOURCE/css/check.css"/>   
</head>


<body>

<div id="overlay" class="overlay">
    <div class="form-container">
    </div>
</div>

<div style="height: 100%;">
    <div id="header" class="header">
    </div>  
    <div id="menu0" class="menu-V">
    </div>  
    <div class="container">
        <div id="menu0-func0-panel" class="main-panel" style="display: block;">         
        </div>
        <div id="menu0-func1-panel" class="main-panel">
        </div>      
        <div id="menu0-func2-panel" class="main-panel">
        </div>
        <div id="menu0-func3-panel" class="main-panel">
        </div>
    </div>
</div>
</body>
</html>

Наконец, loader.js, как показано ниже

$(document).ready(function() {
    $("#header").load("http://"+document.location.host+"/facturation/html/facturation-header");
    $("#menu0").load("http://"+document.location.host+"/facturation/html/facturation-menu0");
    $("#menu0-func0-panel").load("http://"+document.location.host+"/facturation/html/facturation-menu0-func0-panel", function() {
        var option={
            parent: "#stat-container",
            type: "Pie",
            labels: ['FACTURES EN ATTENTE', 'FACTURES EN RETARD (- DE 30 JOURS)', 'FACTURES EN RETARD (+ DE 30 JOURS)'],
            data: [20, 15, 10],
            colors: ["#0ae1ff", "#067180", "#dd4d40"],              
            canvasWidth: 250,
            canvasHeight: 250,
            legendType: "value",
            legendPosition: "bottom", 
            legendUnit: "DZD",
            overlay: false                    
        };
        chart(option);
    });
    $("#menu0-func1-panel").load("http://"+document.location.host+"/facturation/html/facturation-menu0-func1-panel");
    $("#menu0-func2-panel").load("http://"+document.location.host+"/facturation/html/facturation-menu0-func2-panel");
    $("#menu0-func3-panel").load("http://"+document.location.host+"/facturation/html/facturation-menu0-func3-panel");
});

Если честно, я не имею ни малейшего понятия, почему я получаю это, и не знаю, что мне делать или пытаться.

NB: Я использую zuulи eureka, как уже упоминалось, мой сервис называется фактурирование, поэтому я добавляю фактурирование после адреса zuul, чтобы он знал, с каким сервисом связаться

Спасибо

1 Ответ

0 голосов
/ 18 ноября 2018

используя этот вопрос Я настроил тимелист для получения своих страниц из classpath

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...