作为前辈,我是通过在线教程学习Java的,所以,请不要对我的问题太苛刻,如果我在这里问这个只是因为我不知道在哪里可以找到答案。
我需要编写一些简单的 Web 服务,所以我开始研究并找到了 Jersey 库,它暂时解决了我的问题。主要问题是每次想访问一个数据库,都需要打开一个连接,所以研究了连接池。
@Path ("login")
@Singleton
public class LoginWS{
private DataSource dataSource;
private Connection connection;
private Statement statement;
public LoginWS (){
try {
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:/comp/env");
dataSource = (DataSource)envContext.lookup("jdbc/testdb");
} catch (NamingException e) {
e.printStackTrace();
}
}
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public String authUser(@HeaderParam(value = "data") String data) {
Gson parser = new Gson();
LoginInput user = parser.fromJson(data, LoginInput.class);
LoginOutput response = new LoginOutput();
try {
connection = dataSource.getConnection();
statement = connection.createStatement();
// Here I do the DB queries, and logic
} catch (SQLException e) {
e.printStackTrace();
}finally {
try { if(null!=resultSet)resultSet.close();} catch (SQLException e)
{e.printStackTrace();}
try { if(null!=statement)statement.close();} catch (SQLException e)
{e.printStackTrace();}
try { if(null!=connection)connection.close();} catch (SQLException e)
{e.printStackTrace();}
}
return parser.toJson(response);
}
}
如您所见,我需要在需要构建的每个其他类中使用一个新的连接池,我不知道这是否是一个好习惯。所以我希望构建类似的东西:
public Connection getDBConnection() {
try {
return dataSource.getConnection();
} catch (SQLException e) {
e.printStackTrace();
}
return null;
}
所以它会要求连接到连接池,所以我所有的 Web 服务都使用相同的池。我尝试了另一个 Web 服务,它在 JSON 对象中返回连接,但是,我认为任何知道这个 WS 在哪里的人都可以访问我的数据库,这至少可以说是不可取的。
然后我读到了一个名为 HttpServlet 的对象,我构建了这样的东西:
public class TestServlet extends HttpServlet {
private static final long serialVersionUID = 1L; // No idea about this. Eclipse's suggestion
private DataSource dataSource;
public void init() throws ServletException {
try {
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:/comp/env");
dataSource = (DataSource)envContext.lookup("jdbc/testdb");
System.out.println("Connection Pool: set");
} catch (NamingException e) {
e.printStackTrace();
}
}
public Connection getDBConnection() {
try {
return dataSource.getConnection();
} catch (SQLException e) {
e.printStackTrace();
}
return null;
}
}
现在购买,我不知道如何从我的 Web 服务中调用这个实例。
老实说……我对要寻找的东西一无所知。
预先感谢您阅读本文。