Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CalculatorWebService
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Eduardo Van Zeller Lacerda
CalculatorWebService
Merge requests
!2
add controller and service class
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add controller and service class
master
into
main
Overview
0
Commits
1
Pipelines
0
Changes
5
Merged
Eduardo Van Zeller Lacerda
requested to merge
master
into
main
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
cbd6887e
1 commit,
2 years ago
5 files
+
70
−
54
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
src/main/java/com/example/calculatorwebservice/controller/CalculatorController.java
0 → 100644
+
9
−
0
Options
package
com.example.calculatorwebservice.controller
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
@RestController
@RequestMapping
(
"/calcualte"
)
public
class
CalculatorController
{
}
Loading