JDBC bean配置

时间:2014-01-25 13:12:17

标签: java database jdbc javabeans

我正在关注

中的教程

http://www.mkyong.com/spring/maven-spring-jdbc-example/

之前我没有使用过bean,本教程的一件事让我感到困惑

    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

    <bean id="customerDAO" class="com.mkyong.customer.dao.impl.JdbcCustomerDAO">
        <property name="dataSource" ref="dataSource" />
    </bean>

    </beans>

这是一个bean文件,它包含一个bean,它将来自JDBCCustomerDao的dataSource变量设置为dataSource,这是该文件中包含的另一个bean:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<bean id="dataSource"
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">

    <property name="driverClassName" value="com.mysql.jdbc.Driver" />
    <property name="url" value="jdbc:mysql://localhost:3306/mkyongjava" />
    <property name="username" value="root" />
    <property name="password" value="password" />
</bean>

到目前为止我了解到JdbcCustomerDao中的dataSource变量设置为具有属性

        <property name="driverClassName" value="com.mysql.jdbc.Driver" />
    <property name="url" value="jdbc:mysql://localhost:3306/mkyongjava" />
    <property name="username" value="root" />
    <property name="password" value="password" />

但我不确定网址指向的是什么。是我的数据库可以找到的网址吗?它是我可以创建dbs的目录吗?

可能这个问题有一个非常简单的答案,但我并不确定,谷歌搜索并没有真正帮助。

谢谢

1 个答案:

答案 0 :(得分:0)

JDBC网址是特定于驱动程序的。在这种情况下,它指向localhost(端口3306)上的MySQL服务器到名为mkyongjava的数据库。