我正在使用Apache Roller Weblogger软件创建一个博客,我对此非常陌生。
我正在Tomcat上部署它,并且正在使用PostgreSQL数据库..我在roller-custom.properties
中完成了所有配置..如果我在浏览器中提供了URL http://localhost:8080/roller/
,我得到的资源不可用错误,
如果我检查,在roller.log
文件中,数据库加载正常..
如果有人有相关建议,请分享..
答案 0 :(得分:0)
我必须将它添加到我的web.xml:
<resource-ref>
<res-ref-name>jdbc/rollerdb</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
这是我的jboss-web.xml:
<resource-ref>
<res-ref-name>jdbc/rollerdb</res-ref-name>
<jndi-name>java:/jdbc/rollerdb-31</jndi-name>
</resource-ref>