<%@ page import="com.dreamsecurity.sso.agent.config.*"%>
I imported module using wildcard like upper code
and I use class in that directory like below:
SSOConfig.setHomeDir(this.getServletConfig().getServletContext(), DEFAULT_SET_PATH);
but this way, the class was recognized as another class.
I want to know why import using wildcard doesn’t work on JSP code
so I use different code for import like below :
<%@ page import="com.dreamsecurity.sso.agent.config.SSOconfig"%>
then I works well.
윤석찬 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1