У меня есть одно весеннее загрузочное веб-приложение, и я получаю следующее исключение:
org.xml.sax.SAXParseException: Attribute name "webkitdirectory" associated with an element type "input" must be followed by the ' = ' character.
для одного из HTML-шаблонов тимелина, который выглядит следующим образом:
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<form>
<div class="form-path">
<label for="formControlProjectPath">File input</label>
<input type="file" webkitdirectory mozdirectory msdirectory odirectory directory id="formControlProjectPath" />
</div>
</form>
</body>
</html>
Что я должен сделать, чтобы исправить эту ошибку?