Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gestao de Planos de Contingencia em Desastres
Hopeful Wiki
Wiki
backend
backend
· Changes
Page history
Update backend
authored
Aug 25, 2025
by
André Damé Fabião
Hide whitespace changes
Inline
Side-by-side
backend.md
View page @
4bfaf72a
...
...
@@ -79,7 +79,8 @@ public class NotFoundException extends HttpException {
super
(
message
,
HttpStatus
.
NOT_FOUND
);
}
}
```
`
Exemplo de Uso:
```java
@GetMapping("/usuarios/{id}")
public Usuario getUsuario(@PathVariable Long id) {
...
...