php editor Baicao is here to answer a common question: "Do I need @Bind?" For beginners, @Bind is a common annotation, used in some frameworks and libraries. However, in PHP, there is no need to use the @Bind annotation. PHP is a dynamic language and does not require explicit binding of function or method parameters. The parameters of functions and methods are bound according to the actual parameters passed in when called. Therefore, in PHP, there is no need to use the @Bind annotation for parameter binding. I hope to be helpful!
Question content
I accidentally discovered that in a spring boot project, I don't have to bind parameters in a query like the one below.
@sqlquery(""" select id, name from organisations where id = :id """) @registerrowmapper(organisationmapper.class) organisation getorgansation(@bind("id") string id);
This works:
@SqlQuery(""" select id, name from organisations where id = :id """) @RegisterRowMapper(OrganisationMapper.class) Organisation getOrgansation(String id);
However, when I upgrade another project (not the spring boot project) to use 3.43.0, I cannot remove the binding.
Does anyone have a good explanation as to why I can get the query to work without bindings in a spring boot project, but not in a normal java project? (Besides the obvious explanation, magic). Is there any trick I can use to skip binding?
Solution
This comment can only be omitted when compiling the code with the javac flag -parameters
. It's possible that the first project is compiling with that flag and the other one isn't.
The -parameters
flag was introduced in Java 8. If this flag is used, the method's variable names will be available to reflection at runtime. When JDBI can infer the variable name id
through reflection, there is no need for the @Bind
annotation to make it clear that it is for the query parameter id
.
Please also check the corresponding section of the reference document: https://www.php.cn/link/8012c0dd4aa84ef92dfa2de0c7163b5a
The above is the detailed content of Need @Bind?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
