Sign in
Sign up
Explore
Enterprise
Education
Search
Help
Terms of use
About Us
Explore
Enterprise
Education
Gitee Premium
Gitee AI
AI teammates
Sign in
Sign up
Fetch the repository succeeded.
Donate
Please sign in before you donate.
Cancel
Sign in
Scan WeChat QR to Pay
Cancel
Complete
Prompt
Switch to Alipay.
OK
Cancel
Watch
Unwatch
Watching
Releases Only
Ignoring
4
Star
0
Fork
0
啊深圳啊
/
地方地方
Code
Issues
3
Pull Requests
0
Wiki
Insights
Pipelines
Service
PHPDoc
Quality Analysis
Jenkins for Gitee
Tencent CloudBase
Tencent Cloud Serverless
悬镜安全
Aliyun SAE
Codeblitz
SBOM
DevLens
Don’t show this again
Update failed. Please try again later!
Remove this flag
Content Risk Flag
This task is identified by
as the content contains sensitive information such as code security bugs, privacy leaks, etc., so it is only accessible to contributors of this repository.
【需求变更管理】建立需求变更控制流程
Backlog
#I4ED4
git
owner
Opened this issue
2025-12-03 16:03
## 🎯 目标 建立标准化的需求变更管理流程,减少随意变更,提高开发效率。 ## 📋 当前问题 - 产品经理频繁修改需求导致开发进度混乱 - 需求变更缺乏记录和评估 - 开发团队难以应对突发变更 ``` package com.xdx.config; import org.springframework.cache.annotation.EnableCaching; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.cache.RedisCacheConfiguration; import org.springframework.data.redis.cache.RedisCacheManager; import org.springframework.data.redis.connection.RedisConnectionFactory; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer; import org.springframework.data.redis.serializer.RedisSerializationContext; import org.springframework.data.redis.serializer.StringRedisSerializer; import org.springframework.data.redis.cache.*; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.PropertyAccessor; import com.fasterxml.jackson.databind.ObjectMapper; import java.time.Duration; @Configuration @EnableCaching class RedisCacheConfig { @Bean public RedisCacheManager cacheManager(RedisConnectionFactory factory) { ObjectMapper om = new ObjectMapper(); om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); om.activateDefaultTyping(om.getPolymorphicTypeValidator(), ObjectMapper.DefaultTyping.NON_FINAL); Jackson2JsonRedisSerializer<Object> serializer = new Jackson2JsonRedisSerializer<>(om, Object.class); RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig() .entryTtl(Duration.ofMinutes(5)) .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(new StringRedisSerializer())) .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(serializer)); return RedisCacheManager.builder(factory) .cacheDefaults(config) .build(); } @Bean public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) { RedisTemplate<String, Object> template = new RedisTemplate<>(); template.setConnectionFactory(factory); ObjectMapper om = new ObjectMapper(); om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); om.activateDefaultTyping(om.getPolymorphicTypeValidator(), ObjectMapper.DefaultTyping.NON_FINAL); Jackson2JsonRedisSerializer<Object> serializer = new Jackson2JsonRedisSerializer<>(om, Object.class); template.setValueSerializer(serializer); template.setKeySerializer(new StringRedisSerializer()); template.setHashKeySerializer(new StringRedisSerializer()); template.setHashValueSerializer(serializer); template.afterPropertiesSet(); return template; } } ``` ## 🔧 解决方案 ### 1. 需求变更分类 - **紧急变更**:影响线上问题的修复 - **重要变更**:影响核心功能的调整 - **一般变更**:功能优化和体验改进 ### 2. 变更流程 1. **创建Issue**:每次需求变更都必须创建Issue 2. **影响评估**:评估对当前开发的影响 3. **优先级排序**:根据紧急程度确定优先级 4. **团队评审**:开发团队参与评审 5. **版本规划**:确定合并到哪个版本 ### 3. 标签管理 - `需求变更`:标识所有变更请求 - `紧急`:标记紧急变更 - `影响评估中`:正在进行影响评估 - `待评审`:等待团队评审 ## 📊 效果追踪 - 需求变更响应时间 - 变更对进度的实际影响 - 团队满意度调查 ## 🚀 下一步行动 1. 产品经理培训:如何使用Issue管理需求变更 2. 建立定期评审机制 3. 制定需求变更模板 --- *此Issue将作为需求变更管理的总览,所有具体变更都应链接到此Issue*
## 🎯 目标 建立标准化的需求变更管理流程,减少随意变更,提高开发效率。 ## 📋 当前问题 - 产品经理频繁修改需求导致开发进度混乱 - 需求变更缺乏记录和评估 - 开发团队难以应对突发变更 ``` package com.xdx.config; import org.springframework.cache.annotation.EnableCaching; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.cache.RedisCacheConfiguration; import org.springframework.data.redis.cache.RedisCacheManager; import org.springframework.data.redis.connection.RedisConnectionFactory; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer; import org.springframework.data.redis.serializer.RedisSerializationContext; import org.springframework.data.redis.serializer.StringRedisSerializer; import org.springframework.data.redis.cache.*; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.PropertyAccessor; import com.fasterxml.jackson.databind.ObjectMapper; import java.time.Duration; @Configuration @EnableCaching class RedisCacheConfig { @Bean public RedisCacheManager cacheManager(RedisConnectionFactory factory) { ObjectMapper om = new ObjectMapper(); om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); om.activateDefaultTyping(om.getPolymorphicTypeValidator(), ObjectMapper.DefaultTyping.NON_FINAL); Jackson2JsonRedisSerializer<Object> serializer = new Jackson2JsonRedisSerializer<>(om, Object.class); RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig() .entryTtl(Duration.ofMinutes(5)) .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(new StringRedisSerializer())) .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(serializer)); return RedisCacheManager.builder(factory) .cacheDefaults(config) .build(); } @Bean public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) { RedisTemplate<String, Object> template = new RedisTemplate<>(); template.setConnectionFactory(factory); ObjectMapper om = new ObjectMapper(); om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); om.activateDefaultTyping(om.getPolymorphicTypeValidator(), ObjectMapper.DefaultTyping.NON_FINAL); Jackson2JsonRedisSerializer<Object> serializer = new Jackson2JsonRedisSerializer<>(om, Object.class); template.setValueSerializer(serializer); template.setKeySerializer(new StringRedisSerializer()); template.setHashKeySerializer(new StringRedisSerializer()); template.setHashValueSerializer(serializer); template.afterPropertiesSet(); return template; } } ``` ## 🔧 解决方案 ### 1. 需求变更分类 - **紧急变更**:影响线上问题的修复 - **重要变更**:影响核心功能的调整 - **一般变更**:功能优化和体验改进 ### 2. 变更流程 1. **创建Issue**:每次需求变更都必须创建Issue 2. **影响评估**:评估对当前开发的影响 3. **优先级排序**:根据紧急程度确定优先级 4. **团队评审**:开发团队参与评审 5. **版本规划**:确定合并到哪个版本 ### 3. 标签管理 - `需求变更`:标识所有变更请求 - `紧急`:标记紧急变更 - `影响评估中`:正在进行影响评估 - `待评审`:等待团队评审 ## 📊 效果追踪 - 需求变更响应时间 - 变更对进度的实际影响 - 团队满意度调查 ## 🚀 下一步行动 1. 产品经理培训:如何使用Issue管理需求变更 2. 建立定期评审机制 3. 制定需求变更模板 --- *此Issue将作为需求变更管理的总览,所有具体变更都应链接到此Issue*
Comments (
0
)
Sign in
to comment
Status
Backlog
Backlog
Doing
Done
Closed
Assignees
Not set
Labels
需求变更
流程改进
项目管理
Not set
Label settings
Milestones
No related milestones
No related milestones
Pull Requests
None yet
None yet
Successfully merging a pull request will close this issue.
Branches
No related branch
Branches (
-
)
Tags (
-
)
Planed to start   -   Planed to end
-
Top level
Not Top
Top Level: High
Top Level: Medium
Top Level: Low
Priority
Not specified
Serious
Main
Secondary
Unimportant
参与者(1)
PHP
1
https://master.runjs.cn/a-a-a/dfdfsdf.git
git@master.runjs.cn:a-a-a/dfdfsdf.git
a-a-a
dfdfsdf
地方地方
Going to Help Center
Search
收不到邮件验证码?点此查看解决方案
收不到验证码?点此解决
报错500
测试编辑器的一些的自动补全
转移企业文档功能
Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register