如何在JSP中获取类公共字符串?

时间:2018-07-13 17:20:52

标签: java jsp java-ee

我正在尝试从jsp的配置类中获取一些配置静态值。 我试过了,但是没有用。 请在这里指导我。

JSP代码

<%@ page import="com.helper.AppConfig" %>

<c:out value="${Appconfig.themeGitDir}"/>

这是我的配置类

public class AppConfig {
    public static String database = "themegit";
    public static String databaseUser = "root";
    public static String databasePassword = "";
    public static String userTable = "users";
    public static String themeGitDir = "C:/Users/HP/Desktop/theme-git/";
    }

0 个答案:

没有答案