shriya hegde

Greenhorn
+ Follow
since Aug 31, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by shriya hegde

Apologies for not being clear. I mean to say when I select any value from dropdown , that value should be passed as key to hashmap and get the value.

What I am trying for this is
on selection of dropdown value, i am calling javascript function and pass selected value of dropdown as parameter. Inside javascript function I have written scriptlet to do hashmap.get();
But I am not able to send that dropdown value as parameter to hashmap.get method. There is no form submit between dropdown selection and calling this function

Any suggestions?
9 years ago
JSP
I have a a hashmap in request attribute which is available to jsp file where i have a dropdown. Hashmap kay= value of this dropdown.
As and when I select CLT i want to perform some opertation depending on value associated with that key in hashmap.

How can I achieve this
9 years ago
JSP
Hi All,

I am working on some enhancement on application which was written 15 yrs back. I have a requirement. The flow is as below

In a jsp file one selection dropdown exists and a body.
Selection dropdown is written as custom tag library and is included in jsp file eg tag.tld whose code exists in tag.java
code for other parts of jsp are written in that *.jsp file itself. eg test.jsp

i.e test.jsp calls tag.tld to include selection dropdown

I now want a hashmap created in tag.java to be available in jsp file and I want to use it in one of the javascript function available in same jsp file for validation

How can I achieve this
9 years ago
JSP
Hi,

I have read that in Weblogic , WLST and admin console are JMX consoles. I am seeing this jmx console in all the app servers. Could you please let me know what is jmx console in general.
I know that jmx is a feature added in java5.0. But not able to relate that with jmx consoles which comes under app/web server context.

Thanks,
Shriya
12 years ago
hi,

Could somebody tell me what is the use of Spring portlet mvc compared to other portal development frameworks?
12 years ago
hi,

I have developed a small application using spring Portlet MVC. I want to deploy it on jboss portal server and Weblogic Portal.
I don't know how to do extra config for this including server specific deployment descriptors. Could you please help me with this?

Or at least provide me the link which can explain deploying spring portlet mvc project on weblogic portal and jboss portal

Thanks,
Sampada
12 years ago
For removing duplicates we can put it in set. But I didn't know how to implement it exactly.

To sort first I said Employee can extend comparable or comparator. And then he said think that Employee class was writeen by somebody else and it
doesnt extend comparator and comparable then what you ll do

12 years ago
Hi,

I had been to an interview and they asked me this question.

Employee class has an arrayList of Employee Object with id (long), name(Sting), lname(string).
Employee class will not extend comparable or comparator.

There is a Test class which has 2 methods which will takes empList as argument.
First method should remove duplicate objects (duplicate with respect to id) fom array List
Second method should sort empList array on first name.

Could you please guide me how to implement these 2 methods.
12 years ago