環境:j操做系統win七、jetty9.1.4 、jdk1.七、項目是spring mvc、數據庫是mysql。 我使用的(前提是在安裝好了jetty9.x服務器的基礎上)配置步驟:
第一:在你的項目的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 class="org.eclipse.jetty.webapp.WebAppContext">
<!--mysql數據源 ,我這裏用的是mysql數據庫-->
<New id="myDB" class="org.eclipse.jetty.plus.jndi.Resource">
<Arg>jdbc/MYDB</Arg>
<Arg>
<New class="com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource">
<Set name="Url">jdbc:mysql://localhost:3306/mydatabasename</Set>
<Set name="User">root</Set>
<Set name="Password">root</Set>
</New>
</Arg>
</New>
</Configure>
第二,修改web.xml配置文件,對數據源的引用,以下:
<resource-ref>
<description>MY DB Connection</description>
<res-ref-name>jdbc/MYDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
第三,在applicationContext.xml文件中使用數據源,配置以下(標了顏色的部分):
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-4.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
">
<jee:jndi-lookup id="dataSource" jndi-name="java:comp/env/jdbc/MYDB" />
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"
p:dataSource-ref="dataSource"/>
......
...
java -jar start.jar 運行就ok了。java
靠,開始不會弄的時候怎麼也找不到資料,會了後就發現不少資料能夠用了....悲催啊,給你們推薦一個比較全面配置jndi的文章:http://www.javaarch.net/jiagoushi/896.htmmysql
https://wiki.eclipse.org/Jetty/Howto/Configure_JNDI_Datasourceweb