引自:http://www.3doing.net/forums/dispbbs.asp?boardID=57&ID=232&page=2
于 Java 開發的論壇,最有名的當屬 Jive ,國產的 Jute 也很不錯。好是好,但需要花費銀子才能用。對于企業,應該考慮使用Jute,因為其提高良好的技術支持。對于個人,或許就不值得了。這里推薦開源項目 mvnForum, 基于 J2EE technology (Jsp/Servlet).
mvnFourm is free, opensource and released under the terms of the GNU General Public License. It means that you could use it free of charge to build your own discussion communities.
http://www.mvnforum.com/mvnforumweb/index.jsp
于 Java 開發的論壇,最有名的當屬 Jive ,國產的 Jute 也很不錯。好是好,但需要花費銀子才能用。對于企業,應該考慮使用Jute,因為其提高良好的技術支持。對于個人,或許就不值得了。這里推薦開源項目 mvnForum, 基于 J2EE technology (Jsp/Servlet).
mvnFourm is free, opensource and released under the terms of the GNU General Public License. It means that you could use it free of charge to build your own discussion communities.
一、簡介
mvnForum 基于Jsp/Servlet開發,支持Jsp 1.2 和 Servlet 2.3,安裝和使用都非常簡單。 |
主要特征: |
二、安裝環境
參考 | |
服務器:tomcat 4.1.27 | http://jakarta.apache.org/tomcat/index.html |
數據庫:PostgreSQL 7.3.3 | http://www.postgresql.org |
三、安裝
1、下載mvnForum 1.0.0 RC 1,如果需要源碼,可以下載mvnForum 1.0.0 RC 1 Source |
2、將mvnforum-1.0.0-rc1.zip截壓縮到mvnforum-1.0.0-rc1目錄。把mvnforum-1.0.0-rc1/webapp目錄復制到tomcat/webapps/目錄下,然后將webapp改名為mvnforum(可根據需要改成任意的名稱)。接著把mvnforum-1.0.0-rc1/driver/postgresql.jar復制到tomcat/webapps/mvnforum/WEB-INF/lib/目錄下。 |
3、建立論壇數據庫表。首先在PostgreSQL創建一數據庫mvnForum,執行命令如下: CREATEDB -E unicode mvnForum 接著執行mvnforum-1.0.0-rc1/sql/mvnForum_postgresql.sql文件,創建表,執行命令如下: #psql mvnForum mvnForum=#\i mvnForum_postgresql.sql |
4、修改tomcat/webapps/mvnforum/WEB-INF/class/mvncore_db_DBOptions.properties文件,這個文件配置與數據庫相關的資料。設置內容如下: DRIVER_CLASS_NAME = org.postgresql.Driver DATABASE_URL = jdbc:postgresql://192.168.0.10:5432/mvnForum DATABASE_USER = postgres DATABASE_PASSWORD = |
5、基本安裝完成,啟動Tomcat,通過http://localhost:8080/mvnforum/index.jsp就可以訪問論壇了。 |
6、管理員管理,http://localhost:8080/mvnforum/mvnforumadmin/index。用戶名和密碼都是admin,管理員登陸后可以增加版面和管理用戶了。 |