Documentation for JIRA 5.1.x. Documentation for other versions of JIRA is available too. 
![]()
JIRA provides the ability to specify the format of project keys within the system. This is achieved by defining a regular expression 'rule' that governs the valid project key format
注意:
The information on this page does not apply to JIRA OnDemand.
The jira.projectkey.pattern property allows JIRA administrators to specify a Perl5 regular expression value that defines the rule for a valid project key. During project creation, JIRA project administrators must specify a project key that conforms to this rule.
This property and its regular expression value can be defined through the Advanced Settings page.
By default, the JIRA project key configuration requires two or more uppercase alphabetical characters — based on the regular expression ([A-Z][A-Z]+).
To configure a different rule for your project key syntax, change the regular expression (via the 'Advanced Settings' page). Below is a list of common examples and patterns:
要求されたパターン | 必要な表現 | 結果の課題 ID | コメント |
|---|---|---|---|
XXYY、ここで X は 2 つの固定された文字、Y は 2 つの固定された桁数を示す | ( | TQ09-01、TQ09-02、など。 |
|
XZ+, where X indicates one fixed letter, Z+ presents one or more digit or alphabet | ( | ACAT51-1, AAA5-1330, A20091-15 |
|
注意:
Do not use ".", "-", or "_"
.) character (i.e. dot/period/full-stop), as the CreateOrCommentHandler currently fails to add comments to existing issues if the project key contains a dot (.) — see JRA-23180.-) character, as this character is inserted automatically after the regular expression and before the issue ID number. Warning!
If JIRA detects that the project key entered does not match the jira.projectkey.pattern, it will throw the error message defined in jira.projectkey.warning.
You can change jira.projectkey.warning in the jira-config.properties file so that when a user keys in the wrong format, they will be informed of the correct pattern to use.
さまざまなツールによって、正規表現を使用した検索が可能です。ほとんどのテキストエディターでは、正規表現検索を許可しています。また、インターネット検索で利用可能な正規表現をテストできる、さまざまな Web サイトもあります。
You can customise the following properties in the jira-config.properties file:
jira.projectkey.description — a configurable description (to match the project key pattern) displayed on project creationjira.projectkey.warning — a configurable validation warning (to match the project key pattern) 注意: