Hello Team,
I recently migrated my maven project to wildfly version 27.0.1.Final with JDK17and jakarta EE10
after the migration the Rest api's are failing with following error:
<html>
<head>
<title>Error</title>
</head>
<body>Not Found</body>
</html>
can someone please help what could be the issue???
Replaced the following dependencies:
<resteasy-client.version>3.0.19.Final</resteasy-client.version>
<resteasy-jaxb-provider.version>6.0.0.Final</resteasy-jaxb-provider.version>
<resteasy-servlet-initializer.version>3.0.19.Final</resteasy-servlet-initializer.version>
with the following
resteasy-bom:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-bom</artifactId>
<version>6.2.3.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>