Skip to content

Instantly share code, notes, and snippets.

@omeuerodrigofreitas
Created July 30, 2019 23:12
Show Gist options
  • Save omeuerodrigofreitas/ee2f82b3a0732e68c8e2b104a19395a8 to your computer and use it in GitHub Desktop.
Save omeuerodrigofreitas/ee2f82b3a0732e68c8e2b104a19395a8 to your computer and use it in GitHub Desktop.
package br.com.rodrigofreitas.meuapp.service;
import javax.enterprise.context.ApplicationScoped;
@ApplicationScoped
public class HelloWordService {
public String getHelloWithName(String name) {
return "Seja bem-vindo ao quarkus, sr: " + name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment