Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PersonView
Please create a React-JS view called "PersonView" for the fields of the Person entity. The PersonView must contain the following fields: - name: Biografie type: STRING - name: Geburtsjahr type: INT - name: Hauptbeitrag type: STRING - name: Nachname type: STRING - name: Todesjahr type: INT - name: Vorname type: STRING An existing Person entity should be loaded from the relative URL: "/PersonService/person/{id}" (HTTP-GET) If a new Person entity has been created, the new entity should be posted to the relative URL: "/PersonService/person" (HTTP-POST) If an existing Person entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/person/{id}" (HTTP-PUT) If an existing Person entity has to be deleted, the following relative URL should be called: "/PersonService/person/{id}" (HTTP-DELETE) Add a HTML table to the view with the following HistorischesEreignis columns: - column: Titel - column: Land - column: Person - column: Beschreibung - column: Ereignisdatum The table should have the title "HistorischesEreigniss" und the data must be loaded from the server with the following relative URL: "/PersonService/historischesereignis/person/{id}" Add a HTML table to the view with the following BewegungPerson columns: - column: Rollenbeschreibung - column: Person - column: BewegungOderVerband The table should have the title "BewegungPersons" und the data must be loaded from the server with the following relative URL: "/PersonService/bewegungperson/person/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum