Search:

Type: Posts; User: jim829

Search: Search took 0.10 seconds.

  1. Re: How do I set an Entity to read in another Entity which has a List in Servlet?

    I actually have done some servlet programming in conjunction with JSP but not very much. And I have not used any JDBC so you are correct there.

    Regards,
    Jim
  2. Re: How do I set an Entity to read in another Entity which has a List in Servlet?

    Not certain what you're trying to do but here is how setters and getters work.



    public class Demo {
    private String value;

    public void setValue(String val) {
    value = val;
    ...
Results 1 to 2 of 2