分享
 
 
 

在struts中以无参数的javabeans的方式调用struts-config.xml中配置的数据源

王朝java/jsp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

我是从JSP转来学STRUTS的,一开始的时候有很多地方不习惯。

比如对数据库的操作,在JSP中,一般是写一个javabeans来封装对数据库的连接与操作,如:

Conn.java

public class Conn {

private Connection conn = null;

private Statement stmt = null;

private ResultSet rs = null;

private String dataSource = "java:comp/env/jdbc/CpDB";

public Conn() {

try {

Context ctx = new InitialContext();

DataSource ds = (DataSource) ctx.lookup(dataSource);

conn = ds.getConnection();

} catch (Exception e) {

System.err.println(e.getMessage());

}

}

public Statement createStatement() throws Exception {

stmt = conn.createStatement();

return stmt;

}

public ResultSet executeQuery(String sql) throws Exception {

createStatement();

return stmt.executeQuery(sql);

}

public int executeUpdate(String sql) throws Exception {

createStatement();

return stmt.executeUpdate(sql);

}

public void close() {

}

}

然后在JSP页面中用这样的代码:

Conn myConn = new Conn();

String sqlStr = “....”;

ResultSet rs = myConn.exeuteQuery(sqlStr);

.....

但是在STRUTS中,假设我们在struts-config.xml中配置了数据源,如:

<data-sources >

<data-source key="org.apache.struts.action.DATA_SOURCE" type="org.apache.commons.dbcp.BasicDataSource">

<set-property property="password" value="nowind" />

<set-property property="minCount" value="2" />

<set-property property="maxCount" value="10" />

<set-property property="user" value="nowind" />

<set-property property="driverClass" value="com.microsoft.jdbc.sqlserver.SQLServerDriver" />

<set-property property="description" value="microsoft sql server" />

<set-property property="url" value="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=CpDB" />

<set-property property="readOnly" value="false" />

<set-property property="autoCommit" value="false" />

<set-property property="loginTimeout" value="" />

</data-source>

</data-sources>

我们要访问这个数据源,必须要有request对象才行。

假设我们在action中访问数据库,则:

public ActionForward execute(.....) {

try {

DataSource = getDataSource(request,"org.apache.struts.action.DATA_SOURCE");

Connection myConnection = dataSource.getConnection();

Statement myStmt = myConnection.createStatement();

String sqlStr = "................";

ResultSet rs = myStmt.executeQuery(sqlStr);

.....

}

我觉得这样,一是要写多写很多代码,二是在没有request的地方就不好操作数据库了(当然可以把request当作参数传过去,但是还是有一点麻烦)。

所以我写了一个struts的plugin类Conn.java

可以在系统启动的时候,找到数据源,实现与以前在JSP下调用JavaBeans相同的结果。

package com.strutsLogin2.util;

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

import java.util.Enumeration;

import javax.sql.DataSource;

import org.apache.struts.action.ActionServlet;

import org.apache.struts.action.PlugIn;

import org.apache.struts.config.ModuleConfig;

public class Conn implements PlugIn {

private static DataSource dataSource = null;

private Connection conn = null;

private PreparedStatement preStmt = null;

private Statement stmt = null;

// 得到数据源

public void init(ActionServlet servlet, ModuleConfig config) {

dataSource = (DataSource) servlet.getServletContext().getAttribute(

"org.apache.struts.action.DATA_SOURCE");

}

public Conn() throws SQLException {

if (dataSource != null)

conn = dataSource.getConnection();

}

public ResultSet executeQuery(String sql) {

ResultSet rs = null;

try {

if (stmt == null) {

stmt = conn.createStatement();

}

rs = stmt.executeQuery(sql);

} catch (SQLException e) {

e.printStackTrace();

}

return rs;

}

public void executeUpdate(String sql) throws SQLException {

if (stmt == null) {

stmt = conn.createStatement();

}

stmt.executeUpdate(sql);

}

public Connection getConn() {

return conn;

}

public void prepareStatement(String sqlStr) throws SQLException {

preStmt = conn.prepareStatement(sqlStr);

}

public void setString(int index, String value) throws SQLException {

preStmt.setString(index, value);

}

public void setInt(int index, int value) throws SQLException {

preStmt.setInt(index, value);

}

public void setBoolean(int index, boolean value) throws SQLException {

preStmt.setBoolean(index, value);

}

public void setLong(int index, long value) throws SQLException {

preStmt.setLong(index, value);

}

public void setFloat(int index, float value) throws SQLException {

preStmt.setFloat(index, value);

}

public void setBytes(int index, byte[] value) throws SQLException {

preStmt.setBytes(index, value);

}

public void clearPreStmt() throws SQLException {

preStmt.clearParameters();

preStmt = null;

}

public ResultSet executeQuery() throws SQLException {

if (preStmt != null) {

return preStmt.executeQuery();

} else

return null;

}

public void executeUpdate() throws SQLException {

if (preStmt != null)

preStmt.executeUpdate();

}

public void close() {

try {

if (stmt != null) {

stmt.close();

stmt = null;

}

if (preStmt != null) {

preStmt.close();

preStmt = null;

}

if (conn != null) {

conn.close();

conn = null;

System.out.println("***************** a connection is closed");

}

} catch (Exception e) {

System.err.println(e.getMessage());

}

}

public void destroy() { }

}

其实很简单,关键就在于

dataSource = (DataSource) servlet.getServletContext().getAttribute(

"org.apache.struts.action.DATA_SOURCE");

我们原来也可以从servlet中得到这个数据源,并不只是可以从request中得到。

我们可以用下面的代码看到:

Enumeration en = servlet.getServletContext().getAttributeNames();

while (en.hasMoreElements()) {

System.out.println(en.nextElement().toString());

}

它的显示结果里肯定有

org.apache.struts.action.DATA_SOURCE

这一行。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有