Skip to content

Commit c771446

Browse files
committed
1
1 parent cbc846c commit c771446

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ jobs:
6868
steps:
6969
- name: Deploy to GitHub Pages
7070
id: deployment
71-
uses: actions/deploy-pages@v3
71+
uses: actions/deploy-pages@v4

content/posts/java-annotation.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
author: "Phong Nguyen"
3+
title: "Jav"
4+
date: "2025-2-5"
5+
description: "Annotations in Java"
6+
tags: ["java"] #tags search
7+
FAcategories: ["syntax"] #The category of the post, similar to tags but usually for broader classification.
8+
FAseries: ["Themes Guide"] #indicates that this post is part of a series of related posts
9+
aliases: ["migrate-from-jekyl"] #Alternative URLs or paths that can be used to access this post, useful for redirects from old posts or similar content.
10+
ShowToc: true # Determines whether to display the Table of Contents (TOC) for the post.
11+
TocOpen: true # Controls whether the TOC is expanded when the post is loaded.
12+
weight: 9 # The order in which the post appears in a list of posts. Lower numbers make the post appear earlier.
13+
---
14+
Annotations in Java are metadata that provide information about the program but do not change its behavior. They can be used for **compilation checks**, **runtime processing**, or **documentation generation**.
15+
16+
**References:**
17+
18+
## 1. @Override
19+
20+
## 2. @Deprecated /[ˈdep.rə.keɪt]/
21+
- Can be used on a field, method, constructor or class and indicates that this element it outdated and should not be used anymore.
22+
-
23+

0 commit comments

Comments
 (0)