I bought the MyEclipse 3.8. Now I am trying it. I have a web application which works in Orion. But when I use it with MyEclipse, it has some problem.
for example
<%@ taglib prefix="portlet" uri="/WEB-INF/tld/liferay-portlet.tld" %>
<%@ taglib prefix="liferay" uri="/WEB-INF/tld/liferay-util.tld" %>
<liferay:box top="/html/common/box_top.jsp"
bottom="/html/common/box_bottom.jsp">
<liferay:param name="box_width" value="<%= 1 %>" />
</liferay:box>
1. it can’t find tag , but I am sure I have that tld file in /WEB-INF/tld. Why ?
2. What is meaning of yellow underline under jsp coding ?
3. I need to import class , how could I put jar library into classpath that MyEclipse know ?
Thanks.