如何在maven项目中配置jetty 数据源

如何在maven项目中配置jetty 数据源:

1. 在src\main\webapp\WEB-INF目录下,新建文件jetty-env.xml.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" 
"http://jetty.mortbay.org/configure.dtd"> 
<Configure>
<New id="dataSource" class="org.eclipse.jetty.plus.jndi.Resource">
  <Arg></Arg>
  <Arg>[datasource name]</Arg>
  <Arg>
    <New class="oracle.jdbc.pool.OracleDataSource">
      <Set name="DriverType">thin</Set>
      <Set name="URL">[url]</Set>
      <Set name="User">[user name]</Set>
      <Set name="Password">[password]</Set>
      <Set name="connectionCachingEnabled">true</Set>
      <Set name="connectionCacheProperties">
        <New class="java.util.Properties">
          <Call name="setProperty">
            <Arg>MinLimit</Arg>
            <Arg>5</Arg>
          </Call>
          <!-- put the other properties in here too -->
        </New>
      </Set>
    </New>
  </Arg>
</New>
</Configure>

引用:http://www.eclipse.org/jetty/documentation/current/jndi-datasource-examples.html#oracle-9i10g-datasource

 

2. 在src\main\webapp\WEB-INF目录下,web.xml文件中,添加如下代码:
<resource-ref>
        <description>ConnectionPool DataSource Reference</description>
        <res-ref-name>[datasource name]</res-ref-name>
        <res-type>javax.sql.DataSource</res-type>
        <res-auth>Container</res-auth>
 </resource-ref>|
[/table]

3. 在java代码中,访问jndi:
[table]
| Context initContext = new InitialContext();
            ds = (DataSource) initContext.lookup(JNDI_NAME);
4. run project

 

参考文章:http://java.dzone.com/articles/jetty-maven-plugin-running

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值