python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
JDK17 + Spring Boot Starter Web Services: Implementation of JAXB-API has not been found on module path or classpath
I have a simple spring boot app and I want to send request to a SOAP endpoint. Unfortunately every time I try to do this I receive: javax.xml.bind.JAXBException: Implementation of JAXB-API has not bee...
Clyde Barrow
Votes: 0
Answers: 1
How to create POJO classes using JAXB maven plugin in java 11
In need to create Pojo classes using JAXB maven plugin in java 11, i am using this plugin in java 8 and working fine:
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
...
BillalT
Votes: 0
Answers: 1
Jaxb java set namespace to all elements
I have a Java class:
@XmlRootElement(name = "a")
public class a {
@XmlElementWrapper
public Component[] components;
public String content;
}
And an XML file: test.xml and XSD f...
SonMooSans
Votes: 0
Answers: 1
method has @XmlElementMapping on it, but it doesn't return a sub-type of JAXBElement
I am trying to deploy my web service on JBOSS EAP 7.2.
But at the deployment stage I get an error. Doesn't my ObjectFactory class return a JAXBElement in the createCertificateTypeSerialNumber method?
...
Денис Завражнов
Votes: 0
Answers: 0