자바 는 각종 프레임 워 크 에서 Scala [3] 를 컴 파일 합 니 다.
이러한 Spring bean 을 정의 하려 면 main / resources 의 beans. xml 및 다음 내용 을 만 듭 니 다.
- <?xml version="1.0" encoding="UTF-8" ?>
- <beansxmlnsbeansxmlns="http://www.springframework.org/schema/beans"
-
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
-
- 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/tx
-
- http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
- <context:component-scan base-package="com.foo.myapp"/>
-
- <bean id="emf"class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
- <property name="persistenceXmlLocation"value="classpath:/META-INF/my-persistence.xml"/>
- </bean>
- <bean id="transactionManager"class="org.springframework.orm.jpa.JpaTransactionManager">
-
- <property name="entityManagerFactory" ref="emf"/>
- </bean>
-
- <tx:annotation-driven />
- </beans>
데이터베이스 설정 에서 persistence. xml 파일 을 읽 습 니 다.홈 디 렉 터 리 에 MyApp 이라는 H2 데이터 베 이 스 를 가 져 옵 니 다.따라서 main / resources / META - INF 파일 을 만 드 는 내용 은 다음 과 같 습 니 다.
- <persistencexmlnspersistencexmlns="http://java.sun.com/xml/ns/persistence"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-
- xsi:schemaLocation="http://java.sun.com/xml/ns/persistencehttp://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
- version="2.0">
-
- <persistence-unit name="myapp" transaction-type="RESOURCE_LOCAL">
- <provider>org.hibernate.ejb.HibernatePersistence</provider>
-
- <properties>
- <propertynamepropertyname="hibernate.connection.driver_class"value="org.h2.Driver"/>
-
- <property name="hibernate.connection.url"value="jdbc:h2:tcp://localhost/~/myapp"/>
- <propertynamepropertyname="hibernate.connection.username" value="sa"/>
-
- <propertynamepropertyname="hibernate.connection.password" value=""/>
- <property name="hibernate.dialect"value="org.hibernate.dialect.H2Dialect"/>
-
- <property name="hibernate.hbm2ddl.auto"value="create"/>
- </properties>
-
- </persistence-unit>
- /persistence>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.