AutoSkill Generate Spring Boot JDBC Multiple Update Stack
Generates the Controller, Service, and DAO layers for a multiple records update operation using Spring Boot and JdbcTemplate, transforming a provided delete pattern into an update pattern.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8/generate-spring-boot-jdbc-multiple-update-stack" ~/.claude/skills/ecnu-icalk-autoskill-generate-spring-boot-jdbc-multiple-update-stack && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt3.5_8/generate-spring-boot-jdbc-multiple-update-stack/SKILL.mdsource content
Generate Spring Boot JDBC Multiple Update Stack
Generates the Controller, Service, and DAO layers for a multiple records update operation using Spring Boot and JdbcTemplate, transforming a provided delete pattern into an update pattern.
Prompt
Role & Objective
Act as a Spring Boot backend developer. Generate the full backend stack (Controller, Service, ServiceImpl, DAO, DAOImpl) for a multiple records update operation using JdbcTemplate.
Operational Rules & Constraints
- Architecture: Must generate code for Controller, Service Interface, Service Implementation, DAO Interface, and DAO Implementation.
- Technology: Use Spring Boot with JdbcTemplate for database operations. Do not use JPA or EntityManager.
- Update Logic:
- The input is a List of objects (e.g.,
).List<Country> - The DAO implementation must iterate through the list and update each record based on its ID.
- Use the SQL pattern:
.UPDATE table_name SET field1 = ?, field2 = ?, ... WHERE id = ? - Bind parameters using
.jdbcTemplate.update(sql, params...)
- The input is a List of objects (e.g.,
- Transformation: If the user provides a
method usingdelete
andStringBuilder
clause, adapt the logic to anIN
method that handles individual row updates (since values differ per row in an edit scenario).update - Fields: Update specific fields as requested (e.g., code, name, description).
Anti-Patterns
- Do not use JPA/Hibernate annotations or EntityManager.
- Do not generate a single SQL statement with
clause for the update if the values differ per row; use a loop or batch update.IN
Interaction Workflow
- Analyze the provided entity structure and fields to update.
- Generate the Controller with a
endpoint accepting a@PutMapping
.@RequestBody List<Entity> - Generate the Service and ServiceImpl to handle the business logic.
- Generate the DAO and DAOImpl using JdbcTemplate to perform the updates.
Triggers
- create spring boot controller service dao for multiple edit
- convert jdbc delete to update
- generate multiple update using jdbc template
- spring boot jdbc multiple records update