個別のJavaクラスtechcontants.javaで宣言されたJava定数を取得し、jstlを使用してjspに表示したいと思います。
public class TechConstants {
public static final String PART = "Part";
public static final String DESCRIPTION = "Description";
public static final String VERSION = "Version";
}
私のview.jspでは、ustlを使用してこのような値が必要です
<td class="Thd" width="14%">Part</td>
(私はこのように試しました<c:outvalue="${TechConstants.PART}">
)
<td class="Thd" width="20%">Description</td>
<td class="Thd" width="10%">Version</td>
私は春とjstlを使用しています、
modelandviewコントローラーで定数値を取得する必要がありますか?そこからビューに渡す必要がありますか?
もしそうなら、コード例を使用してコントローラーで何をすべきかを説明してください。または、jstlを使用してjspで直接定数を取得できますか?