Spring 외부 속성 파일 도입 데이터베이스 연결 절차 상세 설명

데이터베이스 정보 직접 설정
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:p="http://www.springframework.org/schema/p"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
              http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
              http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

  <!--       -->
  <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">

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

</beans>
일반적으로 이렇게 사용 하지 않 고 수정 하기 가 쉽 지 않 습 니 다.외부 속성 파일 설정 을 도입 하 는 방법 을 보 겠 습 니 다.
외부 속성 파일 설정 데이터베이스 연결 도입
1.델 루이 연결 탱크 jar 패키지 도입
(1)druid-1.0.9.jar 를 가 져 와 현재 디 렉 터 리 에 복사 하여 붙 여 넣 으 면 됩 니 다.
在这里插入图片描述
(2)현재 프로젝트 에 도입 한다.
在这里插入图片描述
在这里插入图片描述
2.델 루이 연결 탱크 설정
(1)jdbc.properties 파일 을 새로 만 들 고 데이터 베 이 스 를 작성 합 니 다.
jdbc.properties:

jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/userDb?characterEncoding=utf8&useUnicode=true&useSSL=false
jdbc.username=root
jdbc.password=root
(2)새 프로필 을 만 듭 니 다.
bean6.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:p="http://www.springframework.org/schema/p"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
              http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
              http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">


  <!--         -->
  <context:property-placeholder location="classpath:jdbc.properties"/>

  <!--     -->
  <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">

    <property name="driverClassName" value="${jdbc.driverClass}"></property>
    <property name="url" value="${jdbc.url}" ></property>
    <property name="username" value="${jdbc.username}" ></property>
    <property name ="password" value="${jdbc.password}" ></property>

  </bean>

</beans>
이 절 차 를 마치 면 외부 속성 파일 설정 데이터베이스 연결 을 도입 합 니 다.
Spring 이 외부 속성 파일 을 도입 하여 데이터베이스 연결 을 설정 하 는 절차 에 대한 상세 한 설명 은 여기까지 입 니 다.더 많은 Spring 외부 속성 파일 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 도 많은 응원 부탁드립니다!

좋은 웹페이지 즐겨찾기