iT邦幫忙

0

(新手向)Java小問題尋求協助

  • 分享至 

  • xImage

本人是剛入門的小小新手,
遇到了一些關於Java的問題,想請教論壇上各位協助


1.若您撰寫了 com.frogjump.hr.Main 及 com.frogjump.prj.Main 與 com.frogjump.mgr.Main 三個 Main Class。請描述如何將它們皆置於 frog_jump.jar 中,且在任何工作路徑下,都能藉由 java -jar frog_jump.jar 命令,執行 com.frogjump.prj.Main 類別。

2.當你試著開發一個Web應用程式,提供會員的新增、修改、刪除、查詢等功能,請簡述如何運用MVC的架構,並且發出相關的商業邏輯與資料整合層的元件;此外,你又該如何達成設計前、後分離的程式?

看更多先前的討論...收起先前的討論...
dragonH iT邦超人 5 級 ‧ 2020-03-02 22:56:58 檢舉
作業?
froce iT邦大師 1 級 ‧ 2020-03-02 23:06:45 檢舉
第1題都百思不得其解...你還是重頭聽老師教一次好了。
第1題原本是為啥要類型轉換...
看來下次這種作業題要來截圖了。(茶
dragonH iT邦超人 5 級 ‧ 2020-03-02 23:24:12 檢舉
對吼 都忘了XD
我不會,所以跳過
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

2 個回答

0
Luke
iT邦研究生 5 級 ‧ 2020-03-03 08:46:24

您去 良葛格學習筆記 看看
https://openhome.cc/Gossip/

0
海綿寶寶
iT邦大神 1 級 ‧ 2020-03-03 09:36:04

第一題說明如下
資料來源為 Oracle 官網文件

We want to execute the main method in the class MyClass in the package MyPackage when we run the JAR file.

We first create a text file named Manifest.txt with the following contents:

Main-Class: MyPackage.MyClass

Warning: The text file must end with a new line or carriage return. The last line will not be parsed properly if it does not end with a new line or carriage return.

We then create a JAR file named MyJar.jar by entering the following command:

jar cfm MyJar.jar Manifest.txt MyPackage/*.class

This creates the JAR file with a manifest with the following contents:

Manifest-Version: 1.0
Created-By: 1.7.0_06 (Oracle Corporation)
Main-Class: MyPackage.MyClass

When you run the JAR file with the following command, the main method of MyClass executes:

java -jar MyJar.jar

第二題說來話長(其實是我不會)
我就結束這一回合

froce iT邦大師 1 級 ‧ 2020-03-03 09:56:31 檢舉

第二題喔...
去學spring...結案。XD

小魚 iT邦大師 1 級 ‧ 2020-03-03 18:42:43 檢舉

把 海綿寶寶 翻開,
結束這一輪.

小魚 iT邦大師 1 級 ‧ 2020-03-03 18:44:07 檢舉

第2題,
說來話長了,
我可以用幾個月的時間來回答你嗎?

我要發表回答

立即登入回答