我正在尝试从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/";
}