1. 程式人生 > >org.xml.sax.SAXParseException: 元素型別 "meta" 必須由匹配的結束標記 "" 終止。

org.xml.sax.SAXParseException: 元素型別 "meta" 必須由匹配的結束標記 "" 終止。

今天在試 spring boot 的時候測試,@controller 要配合spring boot的模板一起使用,但是專案建立好返現,報錯 org.xml.sax.SAXParseException: 元素型別 “meta” 必須由匹配的結束標記 “” 終止。

這個是html檔案報錯呀,果然,在頁面中發現,meta 沒有終止,這個希望大家注意,這個是系統建立的,所以,要注意
這裡寫圖片描述

大家填一下 反斜槓就好了

專案路徑:
這裡寫圖片描述

server:
  port: 8080

girl:
  cupSize: B
  age: 19

這個結合配置檔案資訊中的 girl

@Component
@ConfigurationProperties
(prefix = "girl") public class GirlProperties { private String cupSize; private Integer age; public String getCupSize() { return cupSize; } public void setCupSize(String cupSize) { this.cupSize = cupSize; } public Integer getAge() { return age; } public
void setAge(Integer age) { this.age = age; } }

這是是實現層,如果需要列印配置檔案裡面的資訊,需要把註解去掉就可以了,我這個是為了測試,@controller層結合模板

//@RestController
@Controller
public class TestPropertiesController {

    @Autowired
    private GirlProperties girlProperties;

    @RequestMapping(value = "/hello",method = RequestMethod.GET)
    public
String Test(){ //return girlProperties.getCupSize()+girlProperties.getAge(); return "index"; } }

相關推薦

使用thymeleaf 模板引擎時報錯org.xml.sax.SAXParseException: 元素型別meta必須匹配結束標記 “” 終止

當springboot 使用thymeleaf 模板引擎時報錯org.xml.sax.SAXParseException: 元素型別 “link” 必須由匹配的結束標記 “” 終止,org.xml.sax.SAXParseException: 元素型別 “meta” 必須由匹配的結束標記 “”

org.xml.sax.SAXParseException:元素型別 "meta" 必須匹配結束標記終止

最近在整合SpringBoot的東西,在跳轉頁面的時候後臺丟擲 org.xml.sax.SAXParseException: 元素型別 "meta" 必須由匹配的結束標記 "</meta>

org.xml.sax.SAXParseException: 元素型別 "meta" 必須匹配結束標記 "" 終止

今天在試 spring boot 的時候測試,@controller 要配合spring boot的模板一起使用,但是專案建立好返現,報錯 org.xml.sax.SAXParseException: 元素型別 “meta” 必須由匹配的結束標記 “” 終止。

Spring Boot+Thymeleaf出現org.xml.sax.SAXParseException: 元素型別 "meta" 必須匹配結束標記 "" 終止

報錯的html如下所示: <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title&

springboot 使用thymeleaf 模板引擎時報錯org.xml.sax.SAXParseException: 元素型別 "link" 必須匹配結束標記 "" 終止

當springboot 使用thymeleaf 模板引擎時報錯org.xml.sax.SAXParseException: 元素型別 “link” 必須由匹配的結束標記 “” 終止,org.xml.sax.SAXParseException: 元素型別 “met

解決:org.xml.sax.SAXParseException: 元素型別 "head" 必須匹配結束標記 "</head>問題

事件背景: 今天就碰到了這樣的問題, org.xml.sax.SAXParseException: 元素型別 "head" 必須由匹配的結束標記 "</head> 我本地編譯的時候報錯,上面報錯,起初 我以為是我畫的html頁面報錯呢,一個個標籤查呀,查了一個多小時沒結果 原因:

元素型別 "meta" 必須匹配結束標記 "meta>" 終止

 來自:https://blog.csdn.net/Luck_ZZ/article/details/79361497在Maven中新增依賴<dependency> <groupId>net.sourceforge.nekohtml</

xml解析----元素型別 "XXXX" 必須匹配結束標記 "" 終止

概述: 利用eclipse link 中moxy在弄微信的向微信寫入資料。報錯了。。。。 [Exception [EclipseLink-25004] (Eclipse Persistence Ser

Tomcat8.0啟動閃退報錯-元素型別 "Context" 必須匹配結束標記 "" 終止

首先看日誌 23-Apr-2018 09:49:53.912 WARNING [1] org.apache.catalina.startup.Catalina.load Catalina.start using conf/server.xml: 元素型別

Caused by: org.xml.sax.SAXParseException;必須元素型別 "mapping" 宣告屬性 "resourse"

求教,hibernate使用Junit測試時報錯,不知道具體怎麼修改,請問下大佬們怎麼處理? hibernate.cfg.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYP

org xml sax SAXParseException 文件根元素 mapper 必須匹配 DOCTYPE 根

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!        

Cause: org.xml.sax.SAXParseException; lineNumber: 45; columnNumber: 62; 元素內容必須格式正確的字元資料或標記組成

三月 09, 2018 12:13:39 下午 org.apache.catalina.core.StandardContext listenerStart 嚴重: Exception sending context initialized event to listener

org.xml.sax.SAXParseException; lineNumber: 5; columnNumber: 88; 對實體 "amp" 的引用必須以 ';' 分隔符結尾

今天在學習c3po資料庫連線池的時候,XML檔案出錯 <property name="jdbcUrl">jdbc:mysql://localhost:3306/transation?useUnicode=true&characterEncoding=utf8</p

Caused by: org.xml.sax.SAXParseException; 萬用字元的匹配很全面, 但無法找到元素 'context:property-placeholder' 的宣告

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 14 in XML document from class path resource [spring-con

spring-bean 版本的問題(報錯:org.xml.sax.SAXParseException; lineNumber: 14; columnNumber: 75;)

bec ber because oot enc not .org 版本 element 當XML中配置的xsd是4.0,而引用的包是4以下的spring-bean.jar時,當服務器能連網時沒問題,不能連網時,就報以下類似錯誤: org.xml.sax.SAXParseEx

Error creating document instance. Cause: org.xml.sax.SAXParseException報錯解決

Error creating document instance. Cause: org.xml.sax.SAXParseException報錯解決 這個報錯的字面解釋為:mybatis:元素內容必須由格式正確的字元資料或標記組成 看到這個錯首先當然是按照字面意思去檢查一下。確認這方

Caused by org xml sax SAXParseException lineNumber 30 co

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!        

spring初次搭建碰到問題 Caused by: org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 7; 不允許有匹配

Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled. 2018-11-26 15:23:20 |ERROR

Caused by: org.xml.sax.SAXParseException; lineNumber: 11; columnNumber: 55; Attribute "separate" must be declared for element type "for

  : com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL

Spring如何載入XSD檔案 org xml sax SAXParseException Failed to rea

                有時候你會發現過去一直啟動正常的系統,某天啟動時會報出形如下面的錯誤:org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 'http://www.springfram