fssa-batch3 / fssa-batch3/sec_b_vigneshwar.vijayakumar__corejava_project_2
Create new User
- 主要言語
- Java
- スター
- 0
- フォーク
- 0
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
#### User Story:
> User can create a new account.
#### Pre-requisites:
- [ ] Create User table
- [ ] User model
- [ ] User DAO (create)
- [ ] User Service (create)
#### Validations:
- [ ] Form Validation
- User Null
- Name ( null, empty, pattern )
- Email ( null, empty, pattern )
- Password ( null, empty, pattern )
- Phone number ( length, >= 600000001 && <= 9999999999 )
- [ ] Business Validation
- Email Already exists.
#### Messages:
- User object can not be null.
- Name cannot be null or empty.
- Email cannot be null or empty.
- Email does not match the pattern.
- Password can not be null or empty.
- Password does not match the pattern.
- Phone number can not be less than or more than 10 digits.
- Phone number does not match the pattern.
- User already exists.
#### Flow:
```mermaid
graph TD;
A(Value Passed to UserService - User Object) --> B(Form Validation) -- Valid --> C(Business Validation)
B --Invalid --> G(Validation Exception)
C-- Valid --> D(Value Passed to UserDAO)
D --> E(Store Value in Database)
C -- Invalid --> F(Validation Exception)
```
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
調査の方向性
まず、前提条件に記載されている User model、User DAO、User Service を見つけ、次に issue で説明されている UserService-to-UserDAO のフローを追跡します。User テーブルとアカウント作成パスが存在し、記載されたフォーム検証とビジネス検証によって指定されたメッセージが生成され、有効なデータが保存されれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- java
- 領域
- backend, database
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100