DD
DevDash

Cron Expression: Every second (Quartz / Spring 6-field syntax)

Cron Expression

* * * * * *

Every second (Quartz / Spring 6-field syntax)

Click the expression to select it, then copy.

Quick Answer

The cron expression for "every second (quartz / spring 6-field syntax)" is `* * * * * *`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.

Field-by-Field Breakdown

FieldValueMeaning
Second*Every second
Minute*Every minute
Hour*Every hour
Day of Month*Every day of month
Month*Every month
Day of Week*Every day of week

Common Use Cases

  • Real-time event processing
  • Sub-minute polling in Spring/Quartz

How to Use This Expression

Vercel Cron Jobs

// vercel.json
{
  "crons": [{
    "path": "/api/your-endpoint",
    "schedule": "* * * * * *"
  }]
}

GitHub Actions

# .github/workflows/scheduled.yml
on:
  schedule:
    - cron: '* * * * * *'

Linux crontab

* * * * * * /path/to/your-command.sh

Frequently Asked Questions

Related Cron Expressions

Want API access + no ads? Pro coming soon.