All Projects → in28minutes → azure-devops-kubernetes-terraform-pipeline

in28minutes / azure-devops-kubernetes-terraform-pipeline

Licence: other
https://github.com/in28minutes/devops-master-class

Programming Languages

java
68154 projects - #9 most used programming language
HCL
1544 projects
Dockerfile
14818 projects

Currency Exchange Micro Service - H2

Run com.in28minutes.microservices.currencyconversionservice.CurrencyConversionServiceApplicationH2 as a Java Application.

Resources

{
  "id": 10001,
  "from": "USD",
  "to": "INR",
  "conversionMultiple": 65.00,
  "environmentInfo": "NA"
}

H2 Console

Notes

Tables Created

create table exchange_value 
(
	id bigint not null, 
	conversion_multiple decimal(19,2), 
	currency_from varchar(255), 
	currency_to varchar(255), 
	primary key (id)
)

Containerization

Troubleshooting

Creating Container

  • mvn package

Running Container

Basic

docker container run --publish 8000:8000 in28min/currency-exchange:0.0.1-SNAPSHOT
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].