我正在用下面的源代码执行一个Maven项目
package com.coderplus.jaxb;
import java.util.HashMap;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
@XmlJavaTypeAdapter(PropertiesMapAdapter.class)
public class PropertiesMap<K,V> extends HashMap<String,String>
{
}
..
package com.coderplus.jaxb;
import java.util.Map.Entry;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class PropertiesMapAdapter extends
XmlAdapter<Properties, PropertiesMap<String, String>> {
@Override
public PropertiesMap<String, String> unmarshal(Properties properties)
throws Exception {
PropertiesMap<String, String> retVal = new PropertiesMap<String, String>();
if (null != properties) {
for (Property param : properties.getProperty()) {
retVal.put(param.getName(), param.getValue());
}
}
return retVal;
}
@Override
public Properties marshal(PropertiesMap<String, String> propertiesMap)
throws Exception {
Properties properties = new Properties();
if (propertiesMap != null) {
for (Entry<String, String> entry : propertiesMap.entrySet()) {
Property param = new Property();
param.setName(entry.getKey());
param.setValue(entry.getValue());
properties.getProperty().add(param);
}
}
return properties;
}
}
..
package com.coderplus.jaxb;
import javax.xml.bind.*;
public class Demo {
@SuppressWarnings("unchecked")
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Root.class);
Root root = new Root();
PropertiesMap map = new PropertiesMap();
map.put("hello", "World");
map.put("name", "value");
root.setProperties(map);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(root, System.out);
}
}
…
src/main/资源中的架构
<?xml version="1.0" encoding="UTF-8" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="Properties">
<xsd:sequence>
<xsd:element name="Property" type="Property" minOccurs="0"
maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Property">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="name" type="xsd:string" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:element name="Root">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Properties" type="Properties" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
src/main/资源中的绑定文件
<jaxb:bindings version="2.0"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<jaxb:bindings schemaLocation="map.xsd">
<jaxb:bindings node="//xs:element[@name='Properties']">
<jaxb:property>
<jaxb:baseType name="com.coderplus.jaxb.PropertiesMap<String,String>" />
</jaxb:property>
</jaxb:bindings>
</jaxb:bindings>
</jaxb:bindings>
最后是POM文件
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.coderplus.jaxb</groupId>
<artifactId>test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.9.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<generatePackage>com.coderplus.jaxb</generatePackage>
</configuration>
</plugin>
</plugins>
</build>
</project>
演示类在我使用 JDK 1.6 执行时生成以下输出
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
<Properties>
<Property name="hello">World</Property>
<Property name="name">value</Property>
</Properties>
</Root>
但出于某种原因,它使用JDK 1.7及更高版本生成以下内容(较新的JAXB?)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
<properties>
<entry>
<key xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">hello</key>
<value xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">World</value>
</entry>
<entry>
<key xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">name</key>
<value xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">value</value>
</entry>
</properties>
</Root>
我怎样才能让它在JDK 1.7或更新版本的JAXB上工作?
更多信息:
maven-jaxb2-plugin与其他类一起生成以下类
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"properties"
})
@XmlRootElement(name = "Root")
public class Root {
@XmlElement(name = "Properties", required = true, type = Properties.class)
protected PropertiesMap<String, String> properties;
public PropertiesMap<String, String> getProperties() {
return properties;
}
public void setProperties(PropertiesMap<String, String> value) {
this.properties = value;
}
}
如果我像下面的代码那样手动添加注释@XmlJavaTypeAdapter(PropertiesMapAdapter.class)
,那么它就可以工作了
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"properties"
})
@XmlRootElement(name = "Root")
public class Root {
@XmlElement(name = "Properties", required = true, type = Properties.class)
@XmlJavaTypeAdapter(PropertiesMapAdapter.class)
protected PropertiesMap<String, String> properties;
public PropertiesMap<String, String> getProperties() {
return properties;
}
public void setProperties(PropertiesMap<String, String> value) {
this.properties = value;
}
}
如何使maven-jaxb2-plugin自动添加<code>XmlJavaTypeAdapter</code>?如果有帮助,这个链接有压缩的Maven项目
尝试添加xjc:javaType定制。
<xjc:javaType name="org.acme.foo.PropertiesMap"
adapter="org.acme.foo.PropertiesMapAdapter"/>
事实: > 用户、组、角色、领域、客户机等存在于主Keycloak配置中。 下载https://downloads.jboss.org/keycloak/3.4.3.final/adapters/keycloak-oidc/keycloak-tomcat7-adapter-dist-3.4.3.final.zip并在下解压缩 (使用uma_authorization的简单测试,每个用户都有角色)
问题内容: 这正是我想要做的 我用表格打开一个页面,该表格包含有关用户的信息 我的getText()元素指示表中的用户数(例如“列表中的11个用户”) 我删除“列表中的用户”部分,并将字符串转换为整数,以便稍后在for循环中使用 我需要通过用户名(第9列)查找某些用户,并获取数字,该数字是该用户信息所在的行数(这就是我被卡住的地方) 我转到该行的第一列(该行将成为该特定用户的编辑按钮),然后单击它
问题内容: 我不明白为什么使用此正则表达式该方法返回false; 我是一个字边界的字符! 问题答案: 在Java中,尝试将模式与 整个string 进行匹配。 这是真实的,和。 如果要检查字符串中是否有匹配项,可以使用。在这种情况下,它是Java字符串文字。 API链接 :尝试根据图案匹配整个区域。 什么意思 如此处所用,点是一个正则表达式元字符,表示(几乎)任何字符。是一个正则表达式元字符,表示
问题内容: 我的代码: 引用的日志文件是: 然后,需要检查脚本中的下一个条件是: 如果条件不起作用 问题答案: 必要的修复: 此后已在问题中解决。 可能必要的修复: 如注释中所述,在脚本中使用尾随空格表示将尾随空格存储在其中,这将破坏与的比较。
问题内容: 我已经建立了俄罗斯方块游戏。现在,我已经使用JPanel来显示内容和块(使用paintComponents()方法)。 问题是,当我尝试从另一个JFrame调用tetris程序时,它根本无法绘制。 我的俄罗斯方块主菜单的代码是: 当调用MatrixBoard的构造函数时,俄罗斯方块游戏会在新窗口中开始。但是,这些块在屏幕上不可见。MatrixBoard的代码是: 请帮忙。我怀疑问题出在
谢了!