Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PA-165 Winery system
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eduard Štefan Mlynárik
PA-165 Winery system
Merge requests
!42
An error occurred while fetching the assigned milestone of the selected merge_request.
Pa 165 security
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Pa 165 security
pa-165-security
into
master
Overview
0
Commits
8
Pipelines
3
Changes
55
Merged
Marek Žákovic
requested to merge
pa-165-security
into
master
10 months ago
Overview
0
Commits
8
Pipelines
3
Changes
55
Expand
0
0
Merge request reports
Compare
master
version 2
59ba5d3f
10 months ago
version 1
0a9f259b
10 months ago
master (base)
and
latest version
latest version
6e5db51a
8 commits,
10 months ago
version 2
59ba5d3f
7 commits,
10 months ago
version 1
0a9f259b
6 commits,
10 months ago
55 files
+
948
−
71
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
55
Search (e.g. *.vue) (Ctrl+P)
customer-service/src/main/java/cz/muni/fi/pa165/client/InventoryManagementClient.java
+
1
−
1
Options
@@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.PathVariable;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
@FeignClient
(
name
=
"InventoryManagementClient"
,
url
=
"$inventory-management.url"
)
@FeignClient
(
name
=
"InventoryManagementClient"
,
url
=
"$
{
inventory-management.url
}
"
)
public
interface
InventoryManagementClient
{
@GetMapping
(
"/wine/code/{wineExtId}"
)
WineDTO
getWineProduct
(
@PathVariable
Long
wineExtId
);
Loading