在liferay中部署新闻稿portlet时出错

时间:2012-12-03 13:17:12

标签: java liferay liferay-6

我遇到在主题中部署简报portlet的问题,发生的错误是 java.net.UnknownHostException:mime 。 感谢您的任何帮助:)

解决了哑剧问题。我不得不为gmail做smtp和pop3设置。

但现在我又面临一个问题,即无法获取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文件中添加了以下代码行:

  

jdbc.default.driverClassName = com.mysql.jdbc.Driver

     

jdbc.default.url = JDBC:MySQL的://本地主机/ liferay的了useUnicode =真安培;的characterEncoding = UTF-8和; useFastDateParsing =假

     

jdbc.default.username = root

     

jdbc.default.password =根

0 个答案:

没有答案