The JSP takes the property that list can traverse but cannot take to the object Springboot JPA

Source: Internet
Author: User

Today with SPRINGBOOTJPA paged query, using the Entitymanager + query way to inquire

PrivateList<policy> Getqueryresult (StringBuilder basejpql, map<string, object>Paras, pageable pageable) {        //Be sure to add the following policy.class, otherwise it will not automatically map the results of the query to the policy, resulting in a list<object[]>, resulting in a property that cannot be taken to the policy in the JSPQuery query = em.createquery ("Select P" +basejpql.tostring (), Policy.)class);//query query = Em.createnativequery ("Select ID, title, author, url, publishtime, Menucode, Urlcode, Createtime, CreateUser, UpdateTime "+basejpql.tostring (), policy.class);Setqueryparameter (Query,paras); Query.setfirstresult ((int) Pageable.getoffset ());        Query.setmaxresults (Pageable.getpagesize ()); returnquery.getresultlist (); }

At first, the second argument was not added to the CreateQuery method, resulting in the query's result set not being automatically mapped to the policy entity

When the front-end JSP takes the policy attribute, it will always error.

On the JSP for a long time, the final discovery is the problem, I hope we can less detours.

The JSP takes the property that list can traverse but cannot take to the object Springboot JPA

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.