Creating multiple object with one response using Spring FrameWork
This is my first time using Spring
to add and get data from a database
. I have successfully established connection with my database
and can add Plants
with only id
and plantName
but now for the part that I do not understand.
How can I create an RowMapper
or something else that would work with a loop that would get the Plant
and go over all PlantParts
to get me the object I need.
I should note that Plant
is just an Object I created to ask here to keep it cleaner and easier to answer.
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Plant
private Long id;
private String plantName;
private List<PlantParts> plantParts;
public void add(PlantParts plantPartsObj)
if (plantParts == null)
plantParts = new ArrayList<>();
plantParts.add(plantPartsObj);
@Data
@NoArgsConstructor
@AllArgsConstructor
public class PlantParts
private String leaves;
private String pedicle;
private String petals;
First I create a Plant
object with this query:
INSERT INTO PLANTS (id, plantname)
VALUES (NEXT VALUE FOR sequence, ?);
Then I add multiple PlantParts
with this query:
INSERT INTO PLANT_PARTS (id, leaves, pedicle, petals)" +
" VALUES (?, ?, ?, ?);
And now I am trying to make it all into one Plant
object, but I do not get how I can get multiple PlantParts
with one RowMapper
.
And this would be my code using Spring
:
@Repository
public class PlantDao
@Autowired
private JdbcTemplate template;
@Override
public Order getPlantById(Long id)
String sql = "SELECT plants.id, plants.plantName, plant_parts.id, plant_parts.leaves, plant_parts.pedicle, plant_parts.petals " +
"FROM plants " +
"LEFT JOIN plant_parts ON plants.id = plant_parts.id AND plants.id = ?";
return template.queryForObject(sql, new Object id, getPostRowMapper());
private RowMapper<Plant> getPostRowMapper()
return (rs, rowNum) -> new Plant(
rs.getLong("id"),
rs.getString("plantname")
//Check if there are any PlantParts, if yes then go over
//all of the PlantParts in a loop
);
Now the part that I do not understand is commented out. How can I go over all PlantParts
in the RowMapper
.
I would like the RowMapper
to do something like this after setting id and plantname
:
//For the first line
if(rs.getString("leaves") != null)
plant.add(new PlantRow(rs.getString("leaves"),
rs.getInt("pedicle"), rs.getInt("petals")));
while (rs.next())
if(rs.getString("leaves") != null)
plant.add(new PlantRow(rs.getString("leaves"),
rs.getInt("pedicle"), rs.getInt("petals")));
I do not mind if there is another way to do it, without using RowMapper
, I just need something that would make it work.
java sql spring spring-jdbc jdbctemplate
add a comment |
This is my first time using Spring
to add and get data from a database
. I have successfully established connection with my database
and can add Plants
with only id
and plantName
but now for the part that I do not understand.
How can I create an RowMapper
or something else that would work with a loop that would get the Plant
and go over all PlantParts
to get me the object I need.
I should note that Plant
is just an Object I created to ask here to keep it cleaner and easier to answer.
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Plant
private Long id;
private String plantName;
private List<PlantParts> plantParts;
public void add(PlantParts plantPartsObj)
if (plantParts == null)
plantParts = new ArrayList<>();
plantParts.add(plantPartsObj);
@Data
@NoArgsConstructor
@AllArgsConstructor
public class PlantParts
private String leaves;
private String pedicle;
private String petals;
First I create a Plant
object with this query:
INSERT INTO PLANTS (id, plantname)
VALUES (NEXT VALUE FOR sequence, ?);
Then I add multiple PlantParts
with this query:
INSERT INTO PLANT_PARTS (id, leaves, pedicle, petals)" +
" VALUES (?, ?, ?, ?);
And now I am trying to make it all into one Plant
object, but I do not get how I can get multiple PlantParts
with one RowMapper
.
And this would be my code using Spring
:
@Repository
public class PlantDao
@Autowired
private JdbcTemplate template;
@Override
public Order getPlantById(Long id)
String sql = "SELECT plants.id, plants.plantName, plant_parts.id, plant_parts.leaves, plant_parts.pedicle, plant_parts.petals " +
"FROM plants " +
"LEFT JOIN plant_parts ON plants.id = plant_parts.id AND plants.id = ?";
return template.queryForObject(sql, new Object id, getPostRowMapper());
private RowMapper<Plant> getPostRowMapper()
return (rs, rowNum) -> new Plant(
rs.getLong("id"),
rs.getString("plantname")
//Check if there are any PlantParts, if yes then go over
//all of the PlantParts in a loop
);
Now the part that I do not understand is commented out. How can I go over all PlantParts
in the RowMapper
.
I would like the RowMapper
to do something like this after setting id and plantname
:
//For the first line
if(rs.getString("leaves") != null)
plant.add(new PlantRow(rs.getString("leaves"),
rs.getInt("pedicle"), rs.getInt("petals")));
while (rs.next())
if(rs.getString("leaves") != null)
plant.add(new PlantRow(rs.getString("leaves"),
rs.getInt("pedicle"), rs.getInt("petals")));
I do not mind if there is another way to do it, without using RowMapper
, I just need something that would make it work.
java sql spring spring-jdbc jdbctemplate
add a comment |
This is my first time using Spring
to add and get data from a database
. I have successfully established connection with my database
and can add Plants
with only id
and plantName
but now for the part that I do not understand.
How can I create an RowMapper
or something else that would work with a loop that would get the Plant
and go over all PlantParts
to get me the object I need.
I should note that Plant
is just an Object I created to ask here to keep it cleaner and easier to answer.
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Plant
private Long id;
private String plantName;
private List<PlantParts> plantParts;
public void add(PlantParts plantPartsObj)
if (plantParts == null)
plantParts = new ArrayList<>();
plantParts.add(plantPartsObj);
@Data
@NoArgsConstructor
@AllArgsConstructor
public class PlantParts
private String leaves;
private String pedicle;
private String petals;
First I create a Plant
object with this query:
INSERT INTO PLANTS (id, plantname)
VALUES (NEXT VALUE FOR sequence, ?);
Then I add multiple PlantParts
with this query:
INSERT INTO PLANT_PARTS (id, leaves, pedicle, petals)" +
" VALUES (?, ?, ?, ?);
And now I am trying to make it all into one Plant
object, but I do not get how I can get multiple PlantParts
with one RowMapper
.
And this would be my code using Spring
:
@Repository
public class PlantDao
@Autowired
private JdbcTemplate template;
@Override
public Order getPlantById(Long id)
String sql = "SELECT plants.id, plants.plantName, plant_parts.id, plant_parts.leaves, plant_parts.pedicle, plant_parts.petals " +
"FROM plants " +
"LEFT JOIN plant_parts ON plants.id = plant_parts.id AND plants.id = ?";
return template.queryForObject(sql, new Object id, getPostRowMapper());
private RowMapper<Plant> getPostRowMapper()
return (rs, rowNum) -> new Plant(
rs.getLong("id"),
rs.getString("plantname")
//Check if there are any PlantParts, if yes then go over
//all of the PlantParts in a loop
);
Now the part that I do not understand is commented out. How can I go over all PlantParts
in the RowMapper
.
I would like the RowMapper
to do something like this after setting id and plantname
:
//For the first line
if(rs.getString("leaves") != null)
plant.add(new PlantRow(rs.getString("leaves"),
rs.getInt("pedicle"), rs.getInt("petals")));
while (rs.next())
if(rs.getString("leaves") != null)
plant.add(new PlantRow(rs.getString("leaves"),
rs.getInt("pedicle"), rs.getInt("petals")));
I do not mind if there is another way to do it, without using RowMapper
, I just need something that would make it work.
java sql spring spring-jdbc jdbctemplate
This is my first time using Spring
to add and get data from a database
. I have successfully established connection with my database
and can add Plants
with only id
and plantName
but now for the part that I do not understand.
How can I create an RowMapper
or something else that would work with a loop that would get the Plant
and go over all PlantParts
to get me the object I need.
I should note that Plant
is just an Object I created to ask here to keep it cleaner and easier to answer.
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Plant
private Long id;
private String plantName;
private List<PlantParts> plantParts;
public void add(PlantParts plantPartsObj)
if (plantParts == null)
plantParts = new ArrayList<>();
plantParts.add(plantPartsObj);
@Data
@NoArgsConstructor
@AllArgsConstructor
public class PlantParts
private String leaves;
private String pedicle;
private String petals;
First I create a Plant
object with this query:
INSERT INTO PLANTS (id, plantname)
VALUES (NEXT VALUE FOR sequence, ?);
Then I add multiple PlantParts
with this query:
INSERT INTO PLANT_PARTS (id, leaves, pedicle, petals)" +
" VALUES (?, ?, ?, ?);
And now I am trying to make it all into one Plant
object, but I do not get how I can get multiple PlantParts
with one RowMapper
.
And this would be my code using Spring
:
@Repository
public class PlantDao
@Autowired
private JdbcTemplate template;
@Override
public Order getPlantById(Long id)
String sql = "SELECT plants.id, plants.plantName, plant_parts.id, plant_parts.leaves, plant_parts.pedicle, plant_parts.petals " +
"FROM plants " +
"LEFT JOIN plant_parts ON plants.id = plant_parts.id AND plants.id = ?";
return template.queryForObject(sql, new Object id, getPostRowMapper());
private RowMapper<Plant> getPostRowMapper()
return (rs, rowNum) -> new Plant(
rs.getLong("id"),
rs.getString("plantname")
//Check if there are any PlantParts, if yes then go over
//all of the PlantParts in a loop
);
Now the part that I do not understand is commented out. How can I go over all PlantParts
in the RowMapper
.
I would like the RowMapper
to do something like this after setting id and plantname
:
//For the first line
if(rs.getString("leaves") != null)
plant.add(new PlantRow(rs.getString("leaves"),
rs.getInt("pedicle"), rs.getInt("petals")));
while (rs.next())
if(rs.getString("leaves") != null)
plant.add(new PlantRow(rs.getString("leaves"),
rs.getInt("pedicle"), rs.getInt("petals")));
I do not mind if there is another way to do it, without using RowMapper
, I just need something that would make it work.
java sql spring spring-jdbc jdbctemplate
java sql spring spring-jdbc jdbctemplate
edited Nov 13 '18 at 1:37
Richard
asked Nov 12 '18 at 23:16
RichardRichard
929
929
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53271486%2fcreating-multiple-object-with-one-response-using-spring-framework%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53271486%2fcreating-multiple-object-with-one-response-using-spring-framework%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown