使用eclipse 進行 Cesium 開發

bcbobo21cn發表於2020-11-25

接此;

https://blog.csdn.net/bcbobo21cn/article/details/109660784

在另一臺電腦按此文搭建環境,失敗;npm install 執行失敗;

查了一些資料,執行 npm install -g npm 或 npm install gulp -g 均不能成功搭建環境;

看一下主要是要生成 node_modules 資料夾;網上下一個node_modules資料夾,拷過去看一下;原來node_modules資料夾各是各的,Cesium 有 Cesium 的,下面這個應該是VUE的;

看一下資料;原來可以用Eclipse開發Cesium;

Eclipse新建一個動態web工程;

新增tomcat;

 

新建動態web專案的配置;

新增專案成功如下;

然後把Cesium-1.75資料夾拷過去;拷到WebContent目錄下;

可以直接使用拖放操作;把資料夾拖過去;

完成如下;

把專案布到tomcat7;

執行,出現 Server Tomcat v7.0 Server at localhost failed to start 錯誤;

看一下控制檯顯示的資訊;

資訊: Starting Servlet Engine: Apache Tomcat/7.0.11
org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant
pool: 18
    at org.apache.tomcat.util.bcel.classfile.Constant.readConstant(Constant.java:131)
    at org.apache.tomcat.util.bcel.classfile.ConstantPool.<init>(ConstantPool.java:60)

這是tomcat版本低;

 

再在eclipse裡面配置一個tomcat8;完成如下;

啟動tomcat8;

從下述選單,開啟eclipse內建瀏覽器;

1

訪問如下網址;

http://localhost:8080/testce1/Cesium-1.75/Apps/HelloWorld.html

看一下Cesium自帶helloworld例子跑起來了;

    然後可以進行下一步開發;

相關文章