Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Summary of MyBatis placeholders and splices

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

-- placeholders and splices

# {} represents a placeholder. Through # {}, you can set values from preparedStatement to placeholders and convert java types and jdbc types automatically. # {} can effectively prevent sql injection. # {} can receive simple type values or pojo attribute values. If parameterType transmits a single simple type value, the # {} parentheses can be value or other names.

${} means concatenating sql strings. Through ${}, the content passed in by parameterType can be spliced into sql without jdbc type conversion. ${} can receive simple type values or pojo attribute values. If parameterType transmits a single simple type value, it can only be value in ${} parentheses.

Z

A

ParameterType and resultType

ParameterType: specifies the input parameter type, and mybatis gets the parameter values from the input object through ognl to concatenate them in sql.

ResultType: specifies the type of output result, and mybatis maps a row of record data from the sql query result to an object of the type specified by resultType. If there are multiple pieces of data, map them separately and put the objects in the container List.

Z

A

SelectOne and selectList

SelectOne queries a record. If you use selectOne to query multiple records, an exception is thrown:

Org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne (), but found: 3

At org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne (DefaultSqlSession.java:70)

SelectList can query one or more records.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report