2016-08-02 1 views
0

나는 최대 절전 모드로 새로운 프로젝트를 만들고있다. 내 Eclipse 환경에서 최대 절전 모드를 올바르게 구성하는 데 문제가 있습니다.Eclipse가 최대 절전 모드 설정에서 올바른 테이블을 보여주지 않는다

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 
             "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> 
<hibernate-configuration> 
<session-factory name=""> 
    <property name="hibernate.connection.driver_class">com.microsoft.jdbc.sqlserver.SQLServerDriver</property> 
    <property name="hibernate.connection.password">XXXXX</property> 
    <property name="hibernate.connection.url">jdbc:sqlserver://localhost/Framework</property> 
    <property name="hibernate.connection.username">sa</property> 
    <property name="hibernate.default_schema">Framework</property> 
    <property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property> 
    <property name="hibernate.connection.pool_size">10</property> 
    <property name="show_sql">true</property> 
</session-factory> 
</hibernate-configuration> 

내 Eclipse 환경에서는 프레임 워크 데이터베이스 대신 마스터 데이터베이스 만 표시됩니다. 누군가 이걸로 나를 도울 수 있습니까?

enter image description here

답변

0

은 데이터베이스가 올바르게 구성되지 않았습니다. 사용자에게 올바른 권한이 없습니다. 이것을 고친 후 작동합니다.

관련 문제