aspose file tools
The moose likes Other Open Source Projects and the fly likes JSP, Solr - How to get fields from an Interator Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Products » Other Open Source Projects
Reply Bookmark "JSP, Solr - How to get fields from an Interator" Watch "JSP, Solr - How to get fields from an Interator" New topic
Author

JSP, Solr - How to get fields from an Interator

willie wright
Greenhorn

Joined: Feb 18, 2010
Posts: 6
Hi,

I am new to Java (though not to JavaScript or JQuery). I have a standalone JSP that gets results from Solr. In the iterator, how can I break out the fields so I can display them similar to this:

<div>ItemID: <%=result.getItemID()%></div>
<div>ItemName: <%=result.getItemName()%></div>
<div>ItemImage: <%=result.getItemImage()%></div>
<div>CategoryID: <%=result.getCategoryID()%></div>
<div>CategoryName: <%=result.getCategoryName()%></div>
<div>ParentCategoryID: <%=result.getParentCategoryID()%></div>


Here's the code:



Here's the current output:

Searching Data on the Solr Index
Returned QueryResponse Header

{status=0,QTime=0,params={facet=true,facet.mincount=1,start=0,q=widget,facet.field=cgynam,wt=javabin,rows=5,version=1}}
Search Results Metadata

* Elapsed Time:0
* Query Time:0
* Number Of Results:583

Facets

* cgynam
o Clearance(68)
o New For 2009(57)


Results

* SolrDocument[{itmnam=Widget 1, cgyid=1000, cgynam=Classic}]
* SolrDocument[{itmnam=Widget 2, cgyid=1000, cgynam=Clearance}]
* SolrDocument[{itmnam=Widget 3, cgyid=1000, cgynam=Clearance}]
* SolrDocument[{itmnam=Widget 4, cgyid=1000, cgynam=Clearance}]
* SolrDocument[{itmnam=Widget 5, cgyid=1000, cgynam=Clearance}]
Ninad Kulkarni
Ranch Hand

Joined: Aug 31, 2007
Posts: 774

UseCodeTags because it will be easier to read code.


SCJP 5.0 - JavaRanch FAQ - Java Beginners FAQ - SCJP FAQ - SCJP Mock Tests - Tutorial - JavaSE7 - JavaEE6 -Generics FAQ - JLS - JVM Spec - Java FAQs - Smart Questions
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: JSP, Solr - How to get fields from an Interator
 
Similar Threads
HTML drop downs not working
Struts Taglibs issues while including html in jsp
request.getParameter retuning null
ClassCastException while reading ics file with ical4j in JackRabit
How far can you take HttpURLConnection