J

Skill 详情

java-spring-boot

Spring模块关注

来源平台:ModelScope
来源标识:ModelScope/majiayu000/java-spring-boot
源文件:原始说明
AI 平台与模型 热门 ModelScope 高 风险 下载 106访问 709Stars 124 ModelScopeGitHub Copilot
来源平台ModelScope
文档版本master
热度热门
排名信号下载 106
概述 安装 文档 下载

快速判断

Spring模块关注

最后校验2026-03-15
来源平台ModelScope
安全提示
下载副本ZIP 可用

适合任务

  • 按 ModelScope 收录说明完成平台、开发或工作流任务。
  • 通过下载包离线保存 Skill 内容。
  • 结合下载量、访问量和喜欢数评估优先级。

输入与输出

输入:任务目标、上下文材料、平台信息、文件路径、约束条件或需要处理的内容。

输出:按 Skill 说明生成的文档、代码、检查结果、计划、建议或操作步骤。

示例任务

  • 使用 java-spring-boot 帮我完成当前任务,并先确认必要上下文。
  • 根据 java-spring-boot 的说明,列出操作步骤和风险检查点。

安装方式

  1. 下载本站提供的 Skill ZIP 并解压。
  2. 把解压后的 Skill 目录放入当前 AI 工具支持的 skills 目录。
  3. 如需在线查看原始内容,可打开 GitHub 的 SKILL.md

在线原始地址:modelscope-majiayu000-java-spring-boot/SKILL.md

风险边界

使用前请检查权限、外部依赖和要处理的数据类型。第三方平台数据、支付、部署、账号和密钥相关内容应先核对官方说明。

SKILL.md 文档介绍

Java Spring Boot Skill

Build production-ready Spring Boot applications with modern best practices.

Overview

This skill covers Spring Boot development including REST APIs, security configuration, data access, actuator monitoring, and cloud integration. Follows Spring Boot 3.x patterns with emphasis on production readiness.

When to Use This Skill

Use when you need to:

  • Create REST APIs with Spring MVC/WebFlux
  • Configure Spring Security (OAuth2, JWT)
  • Set up database access with Spring Data
  • Enable monitoring with Actuator
  • Integrate with Spring Cloud

Topics Covered

Spring Boot Core

  • Auto-configuration and starters
  • Application properties and profiles
  • Bean lifecycle and configuration
  • DevTools and hot reload

REST API Development

  • @RestController and @RequestMapping
  • Request/response handling
  • Validation with Bean Validation
  • Exception handling with @ControllerAdvice

Spring Security

  • SecurityFilterChain configuration
  • OAuth2 and JWT authentication
  • Method security (@PreAuthorize)
  • CORS and CSRF configuration

Spring Data JPA

  • Repository pattern
  • Query methods and @Query
  • Pagination and sorting
  • Auditing and transactions

Actuator & Monitoring

  • Health checks and probes
  • Metrics with Micrometer
  • Custom endpoints
  • Prometheus integration

Quick Reference

// REST Controller
@RestController
@RequestMapping("/api/users")
@Validated
public class UserController {

    @GetMapping("/{id}")
    public ResponseEntity<User> getUser(@PathVariable Long id) {
        return userService.findById(id)
            .map(ResponseEntity::ok)
            .orElse(ResponseEntity.notFound().build());
    }

    @PostMapping
    public ResponseEntity<User> createUser(@Valid @RequestBody UserRequest request) {
        User user = userService.create(request);
        URI location = URI.create("/api/users/" + user.getId());
        return ResponseEntity.created(location).body(user);
    }
}

// Security Configuration
@Configuration
@EnableWebSecurity
public class SecurityConfig {

    @Bean
    public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
        return http
            .csrf(csrf -> csrf.disable())
            .sessionManagement(s -> s.sessionCreationPolicy(STATELESS))
            .authorizeHttpRequests(auth -> auth
                .requestMatchers("/actuator/health/**").permitAll()
                .requestMatchers("/api/public/**").permitAll()
                .anyRequest().authenticated())
            .oauth2ResourceServer(oauth2 -> oauth2.jwt(Customizer.withDefaults()))
            .build();
    }
}

// Exception Handler
@RestControllerAdvice
public class GlobalExceptionHandler {

    @ExceptionHandler(EntityNotFoundException.class)
    public ProblemDetail handleNotFound(EntityNotFoundException ex) {
        return ProblemDetail.forStatusAndDetail(NOT_FOUND, ex.getMessage());
    }
}

Configuration Templates

# application.yml
spring:
  application:
    name: ${APP_NAME:my-service}
  profiles:
    active: ${SPRING_PROFILES_ACTIVE:local}
  jpa:
    open-in-view: false
    properties:
      hibernate:
        jdbc.batch_size: 50

management:
  endpoints:
    web:
      exposure:
        include: health,info,metrics,prometheus
  endpoint:
    health:
      probes:
        enabled: true

server:
  error:
    include-stacktrace: never

Common Patterns

Layer Architecture

Controller → Service → Repository → Database
     ↓           ↓          ↓
   DTOs      Entities    Entities

Validation Patterns

public record CreateUserRequest(
    @NotBlank @Size(max = 100) String name,
    @Email @NotBlank String email,
    @NotNull @Min(18) Integer age
) {}

Troubleshooting

Common Issues

| Problem | Cause | Solution |

|---------|-------|----------|

| Bean not found | Missing @Component | Add annotation or @Bean |

| Circular dependency | Constructor injection | Use @Lazy or refactor |

| 401 Unauthorized | Security config | Check permitAll paths |

| Slow startup | Heavy auto-config | Exclude unused starters |

Debug Properties

debug=true
logging.level.org.springframework.security=DEBUG
spring.jpa.show-sql=true

Debug Checklist

□ Check /actuator/conditions
□ Verify active profiles
□ Review security filter chain
□ Check bean definitions
□ Test health endpoints

Usage

Skill("java-spring-boot")

Related Skills

  • java-testing - Spring test patterns
  • java-jpa-hibernate - Data access
建议反馈