greeterdb.java
来自「一个java写的加密算法」· Java 代码 · 共 26 行
JAVA
26 行
/* * Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */package samples.jdbc.simple.ejb; /** * Remote interface for the GreeterDBEJB. The remote interface defines all possible * business methods for the bean. These are the methods going to be invoked remotely * by the servlets, once they have a reference to the remote interface. * * Servlets generally take the help of JNDI to lookup the bean's home interface and * then use the home interface to obtain references to the bean's remote interface. */public interface GreeterDB extends javax.ejb.EJBObject { /** * Returns the greeting String such as "Good morning, John" * @return the greeting String */ public String getGreeting() throws java.rmi.RemoteException; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?