Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TechnologieApp
Please create a React-JS application for the TechnologieModule. The application has to offer the following views for the user interface: 1. HistorischesEreignisView 2. TechnologieView 3. TechnologieEreignisView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The HistorischesEreignisView must contain the following fields: - name: Beschreibung type: STRING - name: Datum type: DATE - name: Name type: STRING - name: Ort type: STRING An existing HistorischesEreignis entity should be loaded from the relative URL: "/TechnologieService/historischesereignis/{id}" (HTTP-GET) If a new HistorischesEreignis entity has been created, the new entity should be posted to the relative URL: "/TechnologieService/historischesereignis" (HTTP-POST) If an existing HistorischesEreignis entity has been updated, the modified entity should be sent to the relative URL: "/TechnologieService/historischesereignis/{id}" (HTTP-PUT) If an existing HistorischesEreignis entity has to be deleted, the following relative URL should be called: "/TechnologieService/historischesereignis/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TechnologieEreignis columns: - column: HistorischesEreignis - column: Technologie - column: Rolle The table should have the title "TechnologieEreigniss" und the data must be loaded from the server with the following relative URL: "/TechnologieService/technologieereignis/historischesereignis/{id}" 2. The TechnologieView must contain the following fields: - name: Beschreibung type: STRING - name: ErstverwendungJahr type: LONG - name: Kategorie type: STRING - name: Name type: STRING An existing Technologie entity should be loaded from the relative URL: "/TechnologieService/technologie/{id}" (HTTP-GET) If a new Technologie entity has been created, the new entity should be posted to the relative URL: "/TechnologieService/technologie" (HTTP-POST) If an existing Technologie entity has been updated, the modified entity should be sent to the relative URL: "/TechnologieService/technologie/{id}" (HTTP-PUT) If an existing Technologie entity has to be deleted, the following relative URL should be called: "/TechnologieService/technologie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TechnologieEreignis columns: - column: HistorischesEreignis - column: Technologie - column: Rolle The table should have the title "TechnologieEreigniss" und the data must be loaded from the server with the following relative URL: "/TechnologieService/technologieereignis/technologie/{id}" Add a HTML table to the view with the following TechnologieLiteratur columns: - column: Technologie - column: Kommentar - column: Literaturquelle The table should have the title "TechnologieLiteraturs" und the data must be loaded from the server with the following relative URL: "/LiteraturquelleService/technologieliteratur/technologie/{id}" 3. The TechnologieEreignisView must contain the following fields: - name: HistorischesEreignis type: HistorischesEreignis - name: Rolle type: STRING - name: Technologie type: Technologie The data source for the [Technologie] select control should be loaded from the relative URL: "/TechnologieService/technologie" (HTTP-GET) The data source for the [HistorischesEreignis] select control should be loaded from the relative URL: "/TechnologieService/historischesereignis" (HTTP-GET) An existing TechnologieEreignis entity should be loaded from the relative URL: "/TechnologieService/technologieereignis/{id}" (HTTP-GET) If a new TechnologieEreignis entity has been created, the new entity should be posted to the relative URL: "/TechnologieService/technologieereignis" (HTTP-POST) If an existing TechnologieEreignis entity has been updated, the modified entity should be sent to the relative URL: "/TechnologieService/technologieereignis/{id}" (HTTP-PUT) If an existing TechnologieEreignis entity has to be deleted, the following relative URL should be called: "/TechnologieService/technologieereignis/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum