什么是java.lang.RuntimeException:org.apache.cxf.service.factory.ServiceConstructionException

问题描述 投票:1回答:2

我是Web服务的新手。当我尝试创建Web服务时,出现以下错误。

 Error: java.lang.RuntimeException: org.apache.cxf.service.factory.ServiceConstructionException

java.lang.RuntimeException: org.apache.cxf.service.factory.ServiceConstructionException
    at org.apache.cxf.frontend.AbstractServiceFactory.createService(AbstractServiceFactory.java:80)
    at org.apache.cxf.tools.java2wsdl.processor.JavaToWSDLProcessor.process(JavaToWSDLProcessor.java:101)
    at org.apache.cxf.tools.java2ws.JavaToWSContainer.processWSDL(JavaToWSContainer.java:110)
    at org.apache.cxf.tools.java2ws.JavaToWSContainer.execute(JavaToWSContainer.java:75)
    at org.apache.cxf.tools.common.toolspec.ToolRunner.runTool(ToolRunner.java:103)
    at org.apache.cxf.tools.common.toolspec.ToolRunner.runTool(ToolRunner.java:58)
    at org.apache.cxf.tools.common.toolspec.ToolRunner.runTool(ToolRunner.java:40)
    at org.apache.cxf.tools.java2ws.JavaToWS.run(JavaToWS.java:77)
    at org.apache.cxf.tools.java2ws.JavaToWS.main(JavaToWS.java:45)
Caused by: org.apache.cxf.service.factory.ServiceConstructionException
    at org.apache.cxf.jaxb.JAXBDataBinding.initialize(JAXBDataBinding.java:297)
    at org.apache.cxf.service.factory.AbstractServiceFactoryBean.initializeDataBindings(AbstractServiceFactoryBean.java:86)
    at org.apache.cxf.service.factory.ReflectionServiceFactoryBean.buildServiceFromClass(ReflectionServiceFactoryBean.java:474)
    at org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean.buildServiceFromClass(JaxWsServiceFactoryBean.java:685)
    at org.apache.cxf.service.factory.ReflectionServiceFactoryBean.initializeServiceModel(ReflectionServiceFactoryBean.java:536)
    at org.apache.cxf.service.factory.ReflectionServiceFactoryBean.create(ReflectionServiceFactoryBean.java:248)
    at org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean.create(JaxWsServiceFactoryBean.java:205)
    at org.apache.cxf.frontend.AbstractWSDLBasedEndpointFactory.createEndpoint(AbstractWSDLBasedEndpointFactory.java:101)
    at org.apache.cxf.frontend.AbstractServiceFactory.createService(AbstractServiceFactory.java:78)
    ... 8 more
Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 20 counts of IllegalAnnotationExceptions
Class has two properties of the same name "boardingPoint"
    this problem is related to the following location:
        at public java.lang.String com.abhibus.oprs.pojo.booking.PrintTicket.getBoardingPoint()
        at com.abhibus.oprs.pojo.booking.PrintTicket
        at com.abhibus.oprs.pojo.booking.TicketBooking
        at com.abhibus.oprs.pojo.booking.ServicePassengerBookingInfo

过去两天来,我一直对此感到困惑。在这种情况下,ServicePassengerBookingInfo扩展了TicketBooking,TicketBooking扩展了PrintTicket。我在Printticket pojo中定义了一个名为boardingPoint的属性。

请让我知道如何解决此问题

端点源

public class SaveTicketBookingInfo {

    private Long serviceId;
    private Integer adults;
    private Integer childs;
    private String journeyType;
    private Integer journeyTime;
    private Long startPlaceId;
    private Long endPlaceId;
    private Long loginUserId;
    private String paxSeatDetails[];
    private int totalSeatsBooked = 0;
    private Long categoryCodeId[];
    private Long genderCodeId[];
    private String passengerName[];
    private Double passengerAge[];
    private String seatDetails[];
    private Double fareDetails[];
    private Double forwardAdultFare;
    private Double forwardChildFare;
    private double concPerChildPax = 0;
    private int maxPassengerAllowed;
    private String concApplyToChild;
    private int departureDay[];
    private String srvcPlatformNo[];
    private Double concPriceForward;
    private String bookingTypeForward;
    private Double concPriceReturn;
    private String retConc;    
    private String bookingTypeReturn;
    private Long mealIdReturn[];
    private Long mealIdForward[];
    private Double mPriceReturn[];
    private Double mPriceForward[];
    private Integer mQtyForward[];   
    private Integer mQtyReturn[]; 
    private Long depotIds[];
    private Long srvcStationId[];
    private Long accomodationId[];
    private Double tollsPrice[];
    private String acFlag[];   
    private String ticketType;
    private String cancelTicketType;
    private String stockNumber;
    private String stockKey;
    private String cancelType;   
    private String seatNos;
    private int concNoPassengers;
    private String seatsBooked;
    private Long serviceCategoryId;
    private Long concessionId;
    private Double tollFare;
    private String bookingType;
    private String departureTime;
    private String arrivalTime;
    private Double totalAmount;
    private String cardNumber;
    private Double[] bookingTollFare;   
    private Double returnAdultFare;
    private Double returnChildFare;  
    private int retTotalPax = 0;          
    private Double refundPrice;
    private Double refundSrtPrice;
    private Double refundTollFee;
    private Double refundMealPrice;
    private Double refundAccomPrice;
    private Double refundTotalAmount;
    private Long forwardServiceId;
    private Long returnServiceId;
    private Long stationId[];
    private String searchType;
    private String journeyDate;
    private String returnJourneyDate;
    private String[] platFormNo;
    private boolean agentBooking;
    private boolean eBooking;
    private Auditor auditor; 
}

使用setter和getter方法

java web-services cxf
2个回答
1
投票

您可以在发布的堆栈跟踪中看到root原因:

Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 20 counts of IllegalAnnotationExceptions
Class has two properties of the same name "boardingPoint"
    this problem is related to the following location:
        at public java.lang.String com.abhibus.oprs.pojo.booking.PrintTicket.getBoardingPoint()

这是根本原因-隐式或显式地,您定义的类具有不明确的映射,以便两件事映射到相同的名称。毫无疑问,这无法解决,因此服务器无法启动。

没有PrintTicket类的完整源代码,我无法说出是什么原因,但是请看一下您如何注释其属性。可能是您同时导出了两个字段方法(这样一个getter会与该字段冲突),或者您有两个匹配的getter方法(例如isBoardingPointgetBoardingPoint),等等。


0
投票

我有此类错误:

Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 count of IllegalAnnotationExceptions
Two classes have the same type name "{...}" . Use @XmlType.name and XmlType.namespace to give them different names.
    this problem is related to the following location:
        at public com.myapp.package.ClassName

指定类的@XmlType命名空间-如输出中所建议-为类(在上面的示例中,ClassName)为我修复了它。

© www.soinside.com 2019 - 2024. All rights reserved.