Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The REST API deploys as a standard webapp for your servlet container / tomcat. For example, depending on how you deploy webapps, one way would be to alter tomcat-home/conf/server.xml and add:

Code Block
<Context path="/rest"

...

  docBase="/dspace/webapps/rest"

...

 />

In DSpace 4, the initial/official Jersey-based REST API was added to DSpace. The DSpace 4 REST API provides READ-ONLY access to DSpace Objects.

...

Code Block
languagexml
<Context path="/rest" docBase="/dspace/webapps/rest" allowLinking="true"/>

Additional Information

...