实际上,当我在我的eclipse中配置tomcat服务器8.5时,我收到了以下错误
发生了错误。有关详细信息,请参阅错误日志 javax.xml.parsers.DocumentBuilderFactory.setFeature(Ljava /郎/字符串; Z)V
请你帮我解决一下!!
答案 0 :(得分:-1)
检查<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.SplitPane?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.Pane?>
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="1000.0" xmlns="http://javafx.com/javafx/8.0.121" xmlns:fx="http://javafx.com/fxml/1" >
<children>
<AnchorPane prefHeight="25.0" prefWidth="1000.0">
<children>
<Label fx:id="addComponent" layoutX="161.0" mnemonicParsing="false" prefHeight="25.0" prefWidth="600.0" text="+ Add Component" textAlignment="CENTER" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
</children>
</AnchorPane>
<SplitPane dividerPositions="0.1713426853707415" layoutY="25.0" prefHeight="577.0" prefWidth="1000.0">
<items>
<AnchorPane fx:id="leftPane" maxWidth="160.0" minHeight="0.0" minWidth="160.0" prefHeight="575.0" prefWidth="160.0" />
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="546.0" prefWidth="683.0" />
</items>
</SplitPane>
</children>
</Pane>
是否有任何格式/语法错误。