jfinal连接oracle_JFinal框架操作oracle数据库

JFinal框架操作oracle数据库,需要在configPlugin()方法中配置链接oracle数据库的相关配置

配置JFinal数据库操作插件,configPlugin方法

这里我加载jdbc.properties配置文件实在configConstant加载的

@Override

public void configConstant(Constants me) {

loadPropertyFile("jdbc.properties");//加载配置文件

me.setDevMode(getPropertyToBoolean("config.devModel", false));

me.setViewType(ViewType.JSP);

me.setEncoding("UTF-8");

}

jdbc.properites配置文件

oracle.driver=oracle.jdbc.driver.OracleDriver

oracle.url=jdbc:oracle:thin:@127.0.0.1:1521:orcl

oracle.username=scott

oracle.password=xiaohu

config.devModel=true

@Override

public void configPlugin(Plugins me) {

ActiveRecordPlugin arp=null;

String driver=getProperty("oracle.driver");

String url=getProperty("oracle.url");

String username=getProperty("oracle.username");

String password=getProperty("oracle.password");

DruidPlugin dp=new DruidPlugin(url, username, password, driver);

me.add(dp);

arp=new ActiveRecordPlugin(dp);//设置数据库方言

arp.setDialect(new OracleDialect());

arp.setContainerFactory(new CaseInsensitiveContainerFactory());//忽略大小写

me.add(new EhCachePlugin());

arp.addMapping("users", "id",Users.class);

me.add(arp);

}

需要注意一点的是,由于oracle数据库中在创建表时,会自动的将所有的字段自动转为大写,因此在避免后面操作的时候出现大小写错误的相关异常,这里需要配置忽略大小写的功能

arp.setContainerFactory(new CaseInsensitiveContainerFactory());//忽略大小写

如果不需要对数据库进行增加操作,则必须配置忽略大小写,如果不配置忽略大小写,在保存源代码的该段代码中会出现属性id找不到的异常

/**

* Save model.

*/

public boolean save() {

Config config = getConfig();

Table table = getTable();

StringBuilder sql = new StringBuilder();

List paras = new ArrayList();

config.dialect.forModelSave(table, attrs, sql, paras);

// if (paras.size() == 0)return false;// The sql "insert into tableName() values()" works fine, so delete this line

// --------

Connection conn = null;

PreparedStatement pst = null;

int result = 0;

try {

conn = config.getConnection();

if (config.dialect.isOracle())

pst = conn.prepareStatement(sql.toString(), new String[]{table.getPrimaryKey()});

else

pst = conn.prepareStatement(sql.toString(), Statement.RETURN_GENERATED_KEYS);

config.dialect.fillStatement(pst, paras);

result = pst.executeUpdate();

getGeneratedKey(pst, table);//如果不配置忽略大小写,执行到这里会出现异常,虽然可以添加到数据库,但是这里报错,界面还是会显示500错误getModifyFlag().clear();

return result >= 1;

} catch (Exception e) {

throw new ActiveRecordException(e);

} finally {

config.close(pst, conn);

}

}

getGeneratedKey()源代码部分

/**

* Get id after save method.

*/

private void getGeneratedKey(PreparedStatement pst, Table table) throws SQLException {

String pKey = table.getPrimaryKey();

if (get(pKey) == null || getConfig().dialect.isOracle()) {

ResultSet rs = pst.getGeneratedKeys();

if (rs.next()) {

Class colType = table.getColumnType(pKey);

if (colType == Integer.class || colType == int.class)

set(pKey, rs.getInt(1));

else if (colType == Long.class || colType == long.class)

set(pKey, rs.getLong(1));

else

set(pKey, rs.getObject(1));// It returns Long object for int colType

rs.close();

}

}

}

set()源代码部分

/**

* Set attribute to model.

* @param attr the attribute name of the model

* @param value the value of the attribute

* @return this model

* @throws ActiveRecordException if the attribute is not exists of the model

*/

public M set(String attr, Object value) {

if (getTable().hasColumnLabel(attr)) {//执行到这里返回false

attrs.put(attr, value);

getModifyFlag().add(attr);// Add modify flag, update() need this flag.

return (M)this;

}

throw new ActiveRecordException("The attribute name is not exists: " + attr);//抛出该异常

}

现在来说说如果不配置,为什么会出现 The attribute name is not exists:这个异常,这是因为oracle中的字段是大写的,而set方法中传入的attr属性的值是小写,而getTable()中的属性对应的就是oracle字段,这些属性则是大写,因此这里使用getTable().hasColumnLabel(attr)判断是否存在该字段,就会找不到,这时就会抛出该异常,因此就必须配置忽略大小写的方法,就不会出现该异常

实体类:

package com.tenghu.core.model;

import com.jfinal.plugin.activerecord.Model;

public class Users extends Model{

public static Users dao=new Users();

}

操作数据:

Users users=new Users();

users.set("id", "users_sequence.nextval");

users.set("username", "张三");

users.set("pwd", "sdfsdfs");

users.save();

List testList=Users.dao.find("select * from users");

这里就完成了JFinal框架操作oracle数据库,删除和修改就自己去测试了

原文:http://blog.csdn.net/u011109042/article/details/37765497

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,如果您使用JFinal框架,可以按照以下步骤集成数据库数据: 1. 在JFinal配置文件(通常为config文件)中配置数据库连接参数,例如: ```java public class DemoConfig extends JFinalConfig { public void configConstant(Constants me) { // ... } public void configRoute(Routes me) { // ... } public void configPlugin(Plugins me) { // 配置数据库连接池插件 DruidPlugin dp = new DruidPlugin("jdbc:mysql://localhost:3306/mydb", "root", "password"); me.add(dp); // 配置ActiveRecord插件 ActiveRecordPlugin arp = new ActiveRecordPlugin(dp); me.add(arp); // 配置Model映射 arp.addMapping("mytable", MyTable.class); } public void configInterceptor(Interceptors me) { // ... } public void configHandler(Handlers me) { // ... } } ``` 其中,mydb为数据库名称,root和password分别为数据库的用户名和密码,mytable为要映射的表名,MyTable为对应的Model类。 2. 定义Model类。Model类表示数据库中的一张表,例如: ```java public class MyTable extends Model<MyTable> { public static final MyTable dao = new MyTable(); // ... } ``` 在类中定义静态变量dao,用于访问该表的数据。 3. 执行查询语句。使用JFinal的Model类中的静态方法可以执行查询语句并将结果存储到List对象中,例如: ```java List<MyTable> list = MyTable.dao.find("SELECT * FROM mytable"); ``` 其中,mytable为要查询的表名。 4. 处理查询结果。通过List对象可以获取查询结果的各个字段的值,例如: ```java for (MyTable mytable : list) { int id = mytable.getInt("id"); String name = mytable.getStr("name"); int age = mytable.getInt("age"); // ... } ``` 这里假设查询结果包含id、name和age三个字段。 以上就是JFinal集成数据库数据的基本步骤,您可以根据具体情况进行调整和扩展。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值