📄 notepadservlet.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -