eclipse下啟動resin專案
阿新 • • 發佈:2019-01-29
1.安裝eclipse , resin ,配置環境變數
2. 點選:Eclipse - run configuration - Java application - New_configuration
2.1 project 一欄 選擇要執行的web工程 ,Main class 一欄填入Resin的啟動類,我們使用resin3.x的版本,一般是com.caucho.server.resin.Resin
2.2 選擇Arguments ,在 program arguments中填入resin的相關引數 :
-conf "/home/xiaoxiao/opt/resin-standard/conf/resin-www.conf"
其中resin-www.conf可以任意命名,resin-www.conf檔案中需要配置host id,及web-app的document-directory目錄地址:
<host id="xxx.xxx.com" root-directory=".">
<web-app id="/" document-directory="你的工程/src/main/webapp"/>
</host>
下面的VM arguments 是指定Log manager的實現類和JVM啟動堆引數。這個我也不太懂就先不深究。裡面填寫:
-Djava.util.logging.manager=com.caucho.log.LogManagerImpl -Dresin.home="/home/xiaoxiao/opt/resin-standard"
2.3 點選 Classpath 在Bootstrap Entries 中選擇Add External JARs 將 "resin-home"/lib下的jar引入到classpath中。
3. 點選執行吧。