All checks were successful
Build docs / build-docs (pull_request) Successful in 29s
Label PRs based on size / Check PR size (pull_request) Successful in 27s
CI / Get Changed Files (pull_request) Successful in 34s
CI / Backend Tests (pull_request) Has been skipped
CI / eslint (pull_request) Has been skipped
Pull Request Labeler / labeler (pull_request_target) Successful in 4s
CI / Checkstyle Main (pull_request) Has been skipped
CI / oxlint (pull_request) Has been skipped
CI / Docker frontend validation (pull_request) Has been skipped
CI / prettier (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Has been skipped
CI / test-build (pull_request) Has been skipped
CI / Playwright (pull_request) Has been skipped
Claude PR Review / claude-code (pull_request) Successful in 1m41s
47 lines
1.3 KiB
TeX
47 lines
1.3 KiB
TeX
% !TEX root = Projektdokumentation.tex
|
|
\section{Anhang}
|
|
\subsection{Detaillierte Zeitplanung}
|
|
\label{app:Zeitplanung}
|
|
|
|
\tabelleAnhang{ZeitplanungKomplett}
|
|
|
|
\input{Anhang/AnhangLastenheft.tex}
|
|
|
|
\clearpage
|
|
|
|
\input{Anhang/AnhangRessourcen.tex}
|
|
|
|
\clearpage
|
|
|
|
\subsection{Implementierungsbeispiele}
|
|
\label{app:CodeSchichten}
|
|
|
|
\subsubsection{Frontend-Schicht: Angular Component}
|
|
\label{app:FrontendComponent}
|
|
\lstinputlisting[language=C, caption={Angular TypeScript Component - Coinflip Game}]{Listings/CoinflipComponent.ts}
|
|
|
|
\clearpage
|
|
|
|
\subsubsection{Controller-Schicht: Spring Boot REST Controller}
|
|
\label{app:ControllerSchicht}
|
|
\lstinputlisting[language=java, caption={Spring Boot REST Controller - Coinflip}]{Listings/CoinflipController.java}
|
|
|
|
\clearpage
|
|
|
|
\subsubsection{Service-Schicht: Business Logic}
|
|
\label{app:ServiceSchicht}
|
|
\lstinputlisting[language=java, caption={Service-Klasse mit Geschäftslogik - Coinflip}]{Listings/CoinflipService.java}
|
|
|
|
\clearpage
|
|
|
|
\subsubsection{Persistierung-Schicht: JPA Entity}
|
|
\label{app:PersistierungSchicht}
|
|
\lstinputlisting[language=java, caption={JPA Entity - Benutzer}]{Listings/UserEntity.java}
|
|
|
|
\clearpage
|
|
|
|
\subsubsection{Konfiguration: Application Properties}
|
|
\label{app:Konfiguration}
|
|
\lstinputlisting[caption={Spring Boot Anwendungskonfiguration}]{Listings/application.properties}
|
|
|
|
\clearpage
|