Skip to content

A simple Spring Boot application generating QR Codes based on ZXing ("Zebra Crossing") barcode scanning library.

Notifications You must be signed in to change notification settings

ksbrwsk/qrcode-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple Spring Boot application generating QR Codes.

Features

A simple Spring Boot standalone application generating QR Codes based on ZXing ("Zebra Crossing") barcode scanning library.

see live demo on my website.

Build & run

Prerequisites:

Application properties can be configured in

qrcode-generator/src/main/resources/application.properties

Use

mvn clean install

to build the application and

java -jar target/qrcode-generator-1.0.0-SNAPSHOT.jar

or

mvn spring-boot:run

to run it on your development machine.

Point your browser to

http://localhost:8080

docker build -t . qrcode-generator docker run -d --name qrcode-generator -p 9080:8080 qrcode-generator