Spring+JPAのJbossへの導入に関する問題
1.servletに関連するパッケージの削除
2.xerces*を削除する.jar,xml-apis*.jar
3.JBossの下に既に存在するため、jboss-common-coreパッケージを削除
4データベース接続にlocalhostを使うのはだめだと気づいたが、127.0.0.1でいいとは.
と書く
xmlns:jee="http://www.springframework.org/schema/jee"xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"
default-lazy-init="true">
Spring
${jdbc.driverClassName}
${jdbc.url}
${jdbc.username}
${jdbc.password}
300
100
10000
true
100
true
以前はwebでxmlには次のコードが追加されています.
contextClass
org.jboss.spring.vfs.context.VFSXmlWebApplicationContext
また、snowdrop-weaving-1.0.1の3つのパッケージが導入されています.GA.jar
snowdrop-vfs-1.0.1.GA.jar
snowdrop-deployers-1.0.1.GA.jar
これらのパッケージの役割はまだ確実ではありません.
2.xerces*を削除する.jar,xml-apis*.jar
3.JBossの下に既に存在するため、jboss-common-coreパッケージを削除
4データベース接続にlocalhostを使うのはだめだと気づいたが、127.0.0.1でいいとは.
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0">
<persistence-unit name="AppPU" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<non-jta-data-source> </non-jta-data-source>
<properties>
<!-- show sql -->
<property name="hibernate.show_sql" value="true" />
<!-- dialect -->
<property name="hibernate.dialect"
value="org.hibernate.dialect.MySQLDialect" />
</properties>
</persistence-unit>
</persistence>
と書く
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"
default-lazy-init="true">
以前はwebでxmlには次のコードが追加されています.
org.jboss.spring.vfs.context.VFSXmlWebApplicationContext
また、snowdrop-weaving-1.0.1の3つのパッケージが導入されています.GA.jar
snowdrop-vfs-1.0.1.GA.jar
snowdrop-deployers-1.0.1.GA.jar
これらのパッケージの役割はまだ確実ではありません.