Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dbUnitのデータセットを作成しようとしています。ただし、使用したxmlファイルでエラーが発生し続けます。要素タイプMyTableの後には、属性指定">"または"/>"のいずれかを指定する必要があります。誰かが私のxmlファイルが正しくない理由を教えてもらえますか?
<?xml version="1.0" encoding="UTF-8"?> <dataset> <MyTable column1="1", column2="2", column3="3"/> </dataset>
XML フラグメントにコンマを入れないでください。例えば:
<dataset> <MyTable column1="1" column2="2" column3="3"/> </dataset>