ニュースレターポートレットをテーマにデプロイする際に問題が発生しました。発生したエラーはjava.net.UnknownHostException:mimeです。あなたの助けに感謝します:)
mimeの問題が解決されました。GmailのSMTPとPOP3の設定を行う必要がありました。
しかし今、私はもう1つの問題に直面しています。それは、liferayのデータベースをフェッチできず、そのためテーブルを作成できないということです。
これがliferay-persistence.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:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:p="http://www.springframework.org/schema/p"
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">
<!-- liferay database connection -->
<bean id="liferayDataSource" class="org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy">
<property name="targetDataSource">
<bean class="com.liferay.portal.kernel.util.InfrastructureUtil" factory-method="getDataSource" />
</property>
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="liferayDataSource" />
<property name="schemaUpdate" value="true" />
<property name="packagesToScan" value="com.rcs.newsletter.core.model" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop> <prop key="hibernate.show_sql">false</prop>
</props>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate" p:sessionFactory-ref="sessionFactory" />
<tx:annotation-driven />
</beans>
最終的に問題を解決し、portal-ext.properties
Liferayが使用するデフォルトのデータベースを変更するためにファイル内のデータベース統合に変更を加えました。それは問題を解決しました。
MySQLデータベースを使用したので、portal-ext.propertie
sファイルに次のコード行を追加しました。
jdbc.default.driverClassName = com.mysql.jdbc.Driver
jdbc.default.url = jdbc:mysql:// localhost / liferay?useUnicode = true&characterEncoding = UTF-8&useFastDateParsing = false
jdbc.default.username = root
jdbc.default.password = root