Products Downloads


French version


Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

Services are presented using the Swagger-UI interface supplied as standard in the Web application.

 


Note: this presentation can be disabled by changing the /WEB-INF/beans.xml configuration file and commenting the reference to the feature called "swagger2Feature" in the <jaxrs:server><jaxrs:features> element.

Bloc de code
<jaxrs:server id="RestAdelia" address="/" transportId="http://cxf.apache.org/transports/http">     
      < !--jaxrs:features>
         <ref bean="swagger2Feature" />
      </jaxrs:features--><>
</jaxrs:server>

...

 



The feature called "swagger2Feature" referenced in the <jaxrs:server> element displays different configuration elements:

Bloc de code
<bean id="swagger2Feature" class="org.apache.cxf.jaxrs.swagger.Swagger2Feature">
      <property name="basePath" value="/jaxrs/ws"/>
      <property name="resourcePackage" value="hardis.jaxrs" />
      <property name="contact" value="hardis group" />
      <property name="title" value="REST Services List " />
      <property name="description" value=" REST services documentation " />
      <property name="version" value="1.0" />
      <property name="termsOfServiceUrl" value="http://www.hardis-group.com" /><>
</bean>

...

 



List of properties:

Hardis - Tableau personnalisé
alternateColorstrue
marginLeft30px

basePath

Defines the basic URI:

This information delimits the scope of the REST services to present.

...


resourcePackage

Defines a package list.

This information delimits the scope of the REST services to present.

...


contact

title

description

version

termsOfServiceUrl

 


General information presented on the service description page.

...

 



Note: the basePath and resourcePackage properties are automatically entered when creating a site in Environment attributes/Application area> Information at logical level > Web/Client tab > Create/Update site button. 


↑ Top of page