Skip to content

Instantly share code, notes, and snippets.

@rockey5520
Created October 12, 2019 13:10
Show Gist options
  • Save rockey5520/a6c99895b5510cb3830ddfa0f192d27b to your computer and use it in GitHub Desktop.
Save rockey5520/a6c99895b5510cb3830ddfa0f192d27b to your computer and use it in GitHub Desktop.
package org.rockey.hello;
import javax.enterprise.context.ApplicationScoped;
@ApplicationScoped
public class GreetingService {
public String greeting(String name) {
return "hello " + name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment