0
votes
0answers
196 views

Display <Select> options in JSP from database Using Hibernate

I am using Spring, Hibernate and Struts2 for my Java web application. I have created DAOs, Services for Some tables in the database and I am able to process with that in my Action class. Now I want to ...
0
votes
0answers
28 views

type into htmlselect box htmlunit

I'm writing a program to automate data collection from certain sites (on a per query basis). I have written this in Java, and am stuck on certain selects. The problem is that often the query string ...
0
votes
1answer
84 views

Uri Parameter in RESTful Post Method

I am developing a java RESTful web application. In one web page in particular I have, among the other components, a drop-down list: <select name="source" id="source"> <option ...
0
votes
1answer
74 views

How do I get the attributes of a tag?

Been looking everywhere, I just can't seen to find it (probably because I'm wording it wrong or something). In have a simple select tag in a from with several options. Each option has an id ...
0
votes
2answers
1k views

Spring Hibernate, updating JSP view while selecting from dropdown menu

my controller: public String showWeather(Model model) { model.addAttribute("weather", weatherService.listCities()); return "weather"; } my weather.jsp <select class="data"> ...
0
votes
1answer
298 views

Tabulating an option of a select tag

I am currently developing a Struts (1.3.10) application and I'm trying to show in a combo box a set of data. Every single option(row) is a String created by the union of 3 different Strings. My ...
3
votes
4answers
431 views

What descriptive variable name can I use here?

I'm creating a custom Java Struts tag that is for building and formatting an html select box in a standardised way (part of our usability guidelines). Each select box has an additional/initial value ...
0
votes
3answers
1k views

Bulk Row Transfer between Oracle Databases with a Select Filter

Basically, I'm trying to selectively copy a table from one database to another. I have two different [Oracle] databases (e.g., running on different hosts) with the same schema. I'm interested in a ...