Skip to content

Instantly share code, notes, and snippets.

@thejavalistener
Last active August 29, 2015 14:02
Show Gist options
  • Save thejavalistener/d93bc0ac9d72b5b23038 to your computer and use it in GitHub Desktop.
Save thejavalistener/d93bc0ac9d72b5b23038 to your computer and use it in GitHub Desktop.
package com.thejavalistener.post.jndiinstrospector;
import javax.ejb.Stateless;
@Stateless
public class MiEJB
{
public String saludar(String nombre)
{
return "Hola, "+nombre;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment