无法用jax-rs设置招摇

时间:2019-12-19 17:34:46

标签: swagger jax-rs cxf

我不明白,为什么swagger无法与我的spring boot jax-rs应用程序一起使用。

我将此依赖项添加到pom.xml:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
>

    <androidx.viewpager.widget.ViewPager
        android:id="@+id/startPref_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />

</LinearLayout>  

我还要在应用程序属性中设置-> cxf.jaxrs.component-scan = true,我的其余请求是

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    >

    <ImageView
        android:id="@+id/startPref_Layout"
        android:layout_width="0dp"
        android:layout_height="0dp"

        android:scaleType="centerCrop"
        app:layout_constraintBottom_toTopOf="@+id/startPref_layout_info"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="1.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@mipmap/ic_launcher" />


    <TextView
        android:id="@+id/startPref_layout_info"
        android:layout_width="0dp"
        android:layout_height="0dp"

        android:layout_marginStart="8dp"
        android:layout_marginEnd="8dp"
        android:gravity="center"
        android:text="@string/Frag_startPref_layout_info"

        android:textSize="25sp"
        app:layout_constraintBottom_toTopOf="@+id/startPref_layout_select"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHeight_percent=".125"
        app:layout_constraintStart_toStartOf="parent" />

    <RadioGroup
        android:id="@+id/startPref_layout_select"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_marginStart="8dp"

        android:layout_marginEnd="8dp"
        android:orientation="vertical"
        app:layout_constraintBottom_toTopOf="@+id/dot_animation_holder"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHeight_percent=".125"
        app:layout_constraintStart_toStartOf="parent">

        <RadioButton
            android:id="@+id/radioButton1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:checked="true"
            android:text="@string/Frag_startPref_Radio1"
            android:textSize="15sp" />

        <RadioButton
            android:id="@+id/radioButton2"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="@string/Frag_startPref_Radio2"
            android:textSize="15sp" />
    </RadioGroup>


    <LinearLayout
        android:id="@+id/dot_animation_holder"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginStart="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHeight_percent=".08"
        app:layout_constraintStart_toStartOf="parent">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="dots animation here" />

    </LinearLayout>




</androidx.constraintlayout.widget.ConstraintLayout>

按我的预期工作,但打电话时却找不到文档

http://localhost:8000/swagger-ui.html

获取->白标签错误页面。

也许有人可以帮助我吗?

以防万一,这是我的属性文件:

                <!-- Swagger -->
    <dependency>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
        <version>3.3.4</version>
    </dependency>
     <dependency>
        <groupId>org.webjars</groupId>
        <artifactId>swagger-ui</artifactId>
        <version>3.1.5</version>
    </dependency> 

1 个答案:

答案 0 :(得分:0)

可以请您分享整个项目吗?

https://github.com/apache/cxf/tree/cxf-3.3.4/distribution/src/main/release/samples/jax_rs中会找到工作示例,如果您开始一个新项目,我建议使用OpenAPI v3而不是Swagger。