alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Jetty example source code file (EchoBean.java)

This example Jetty source code file (EchoBean.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Jetty tags/keywords

annotation, date, date, echo, echobean, ejb, hello, hello, postconstruct, postconstruct, servlet, stateless, string, string, util, web

The Jetty EchoBean.java source code

package com.acme;


import java.util.Date;
import javax.annotation.PostConstruct;
import javax.ejb.Remote;
import javax.ejb.Stateless;
import javax.interceptor.Interceptors;



@Stateless
@Remote(Echo.class)
public class EchoBean implements Echo 
{
 
    public String echo() 
    {
        return "Hello "+new Date(); 
    }
    
    @PostConstruct
    public void init() 
    {
        System.err.println("EchoBean init called");
    }
}

Other Jetty examples (source code examples)

Here is a short list of links related to this Jetty EchoBean.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.