java ee 6 - Custom tag file code assist not working in Eclipse but working in IntelliJIDEA -
i new javaee struggling hard learn it.
i noticed 1 thing not working code assist in custom tag files in eclipse. same working in intellijidea current version. both screen shots below.
someone me enable code assist in eclipse indigo service release 2.
edited
netbeans & esclipse don't show code assist custom classes when type ${user.} el. intellijidea supports that.
eclipse

intellijidea

jar files

1) try window / preferences / web / jsp files / editor / content assist.
make sure html , xml tag proposals checkboxes checked.
2) can specify taglib instead of tag import?
<%@ tablib prefix="user" uri="/web-inf/tags/user.tld" %> 3) have right libraries in classpath? enabling content assist jsp files
having proper files defined in java™ build class path essential content assist work in jsp files. essential links builder able correctly resolve links servlets or java beans in jsp , html files. enable content assist jsp files:
to determine whether build path correct, select properties project's pop-up menu. select java build path, , libraries page. should see following files:
j2ee.jar rt.jar servlet.jar webcontainer.jar if not present, add them external jar files. may have own versions of these files, depending on level of jdk or servlet api developing. if web applications reference other jars, can place them in build path follows:
use add jars button on library page. must ensure jar file available server configuring server. add jars web-inf/lib directory. automatically added build path , deployed server in part of project war.
Comments
Post a Comment