Hello,
I have a java angular project that I deploy on jetty 9.4.12

Here is my web.xml file
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
 
    <?xml version="1.0" encoding="UTF-8"?>
 
    <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    	version="3.0">
 
        <display-name>Tourism Applicationwith Angular</display-name>
        <description>
            This is a simple web application with a source code organization
            based on the recommendations of the Application Developer's Guide.
        </description>
        <display-name>Archetype Created Web Application</display-name>
 
 
        <listener>
        <listener-class>org.jboss.weld.environment.servlet.Listener</listener-class>
      </listener>
 
       <listener>
        <listener-class>
                org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
            </listener-class>
      </listener>
 
 
 
    	  <resource-env-ref>
    	    <description>Object factory for the CDI Bean Manager</description>
    	    <resource-env-ref-name>BeanManager</resource-env-ref-name>
    	    <resource-env-ref-type>javax.enterprise.inject.spi.BeanManager</resource-env-ref-type>
    	  </resource-env-ref>    
 
        <servlet>
            <servlet-name>Resteasy</servlet-name>
            <servlet-class>
                org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
            </servlet-class>
            <init-param>
                <param-name>javax.ws.rs.Application</param-name>
                <param-value>webservice.TourismWebService</param-value>
            </init-param>
        </servlet>
 
        <servlet-mapping>
            <servlet-name>Resteasy</servlet-name>
            <url-pattern>/*</url-pattern>
        </servlet-mapping>
 
        <context-param>  
         	<param-name>resteasy.injector.factory</param-name>  
         	<param-value>org.jboss.resteasy.cdi.CdiInjectorFactory</param-value>  
    	</context-param> 
 
        <welcome-file-list>
            <welcome-file>index.html</welcome-file>
        </welcome-file-list>
 
    </web-app>
Here is my web service
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
 
    package webservice;
 
 
 
    import java.util.ArrayList;
    import java.util.List;
 
    import javax.inject.Inject;
    import javax.ws.rs.Consumes;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.PathParam;
    import javax.ws.rs.Produces;
    import javax.ws.rs.WebApplicationException;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    import org.jboss.resteasy.cdi.CdiInjectorFactory;
    import org.slf4j.Logger;
 
 
    import business.TourismBusinessService;
    import dto.SearchPathDto;
    import dto.TourismPathDto;
    import io.swagger.annotations.Api;
    import io.swagger.annotations.ApiOperation;
    import io.swagger.annotations.ApiResponse;
 
 
    @Path("/tourism")
    @Api(value = "analyses", description = "search path by userId, location and max distance")
    @Produces(MediaType.APPLICATION_JSON)
    @Consumes(MediaType.APPLICATION_JSON)
    public class TourismWebService extends Application {
 
    	@Inject
    	private Logger logger;
 
 
 
    	@Inject
    	private TourismBusinessService tourismBusinessService;
 
    	@GET
    	@Path("searchPath/{userId}/{longitude}/{latitude}/{distanceMax}")
    	@ApiOperation("Get analysis by Id")
    	@ApiResponse(code = 200, message = "OK")
    	public Response searchPath(@PathParam("userId") long userId,@PathParam("longitude") double longitude,@PathParam("latitude") double latitude,@PathParam("distanceMax") double distanceMax) {
    		SearchPathDto responseDto = new SearchPathDto();
    		//org.jboss.resteasy.cdi.CdiInjectorFactory test = new org.jboss.resteasy.cdi.CdiInjectorFactory();
    		List<TourismPathDto> tourismPathDtoList = new ArrayList<>();
    		TourismPathDto tourismPathDto1 = new TourismPathDto();
    		tourismPathDto1.setCategoryId(1);
    		tourismPathDto1.setDistance((double)100);
    		tourismPathDto1.setLongitude(2.3313926);
    		tourismPathDto1.setLatitude(48.873278);
    		tourismPathDto1.setRoot("root1");
    		tourismPathDto1.setLeaf("leaf1");
    		tourismPathDto1.setWeight((double)2);
    		tourismPathDto1.setMark((double)3);
    		tourismPathDtoList.add(tourismPathDto1);
    		TourismPathDto tourismPathDto2 = new TourismPathDto();
    		tourismPathDto2.setCategoryId(2);
    		tourismPathDto2.setDistance((double)200);
    		tourismPathDto2.setLongitude(2.3368291);
    		tourismPathDto2.setLatitude(48.8747394);
    		tourismPathDto2.setRoot("root2");
    		tourismPathDto2.setLeaf("leaf2");
    		tourismPathDto2.setWeight((double)3);
    		tourismPathDto2.setMark((double)4);
    		tourismPathDtoList.add(tourismPathDto2);
 
    		responseDto.setDistanceMax(distanceMax);
    		responseDto.setLatitude(latitude);
    		responseDto.setLongitude(longitude);
    		responseDto.setUserId(userId);
    		responseDto.setTourismPathDtoList(tourismPathDtoList);
    		//SearchPathDto responseDto = tourismBusinessService.getTourismPathList(userId, longitude, latitude, distanceMax);
    		if (responseDto == null)
    			throw new WebApplicationException(Response.Status.NOT_FOUND);
    		return Response.ok(responseDto).build();
    	}
 
    }
I ran jetty : java -jar start.jar

But when I try to reach the following web service

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
    http://localhost:8080/tourism-services/tourism/searchPath/1/2.3313926/48.873278/200
I have a

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
 
HTTP ERROR 404
 
Problem accessing /tourism-services/tourism/searchPath/1/2.3313926/48.873278/200. Reason:
 
    Not Found
 
error
Thank you for your help