notepadservlet.java

来自「JAVA Servlet2.3外文书籍源码」· Java 代码 · 共 28 行

JAVA
28
字号
package sessions;import java.sql.*;import javax.servlet.http.HttpServlet;/** * This class provides the common database related functionality for * the servlets in the NotePad web application. */public abstract class NotePadServlet extends HttpServlet {    /**     * This method returns a database connection     */    protected Connection getConnection() throws SQLException     { 	try {	    Class.forName("org.gjt.mm.mysql.Driver");	    Connection connection = DriverManager.getConnection("jdbc:mysql://localhost/notepad");	    return connection;	}	catch(ClassNotFoundException cnfe) {	    throw new SQLException("Unable to load the driver: " + cnfe.getMessage());	}    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?