留言板

question about cron-trigger-value

Scarletake Bwi,修改在3 年前。

question about cron-trigger-value

Expert 帖子: 326 加入日期: 10-12-20 最近的帖子
hi,

my question is,
i used follow config in liferay-portal.xml, it work well.

		<scheduler-entry>
			<scheduler-description>
				test
			</scheduler-description>
			<scheduler-event-listener-class>test.Trigger</scheduler-event-listener-class>
			<trigger>
				<cron>
					<cron-trigger-value>0 0 0 ? * FRI#3</cron-trigger-value>
				</cron>
			</trigger>
		</scheduler-entry>


but if i want it be trigger every 2th, 4th and 5th friday, it doesn't work.

		<scheduler-entry>
			<scheduler-description>
				test
			</scheduler-description>
			<scheduler-event-listener-class>test.Trigger</scheduler-event-listener-class>
			<trigger>
				<cron>
					<cron-trigger-value>0 0 0 ? * FRI#2,FRI#4,FRI#5</cron-trigger-value>
				</cron>
			</trigger>
		</scheduler-entry>


can anyone help?
venka reddy,修改在9 年前。

RE: question about cron-trigger-value

Regular Member 帖子: 231 加入日期: 11-3-23 最近的帖子
hi,

Have you gone through the below urls, it can help you

http://www.cronmaker.com/
http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger

0 15 10 ? * 6#3 : Fire at 10:15am on the third Friday of every month
Scarletake Bwi,修改在3 年前。

RE: question about cron-trigger-value

Expert 帖子: 326 加入日期: 10-12-20 最近的帖子
venka reddy:
hi,

Have you gone through the below urls, it can help you

http://www.cronmaker.com/
http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger

0 15 10 ? * 6#3 : Fire at 10:15am on the third Friday of every month



Dear Mr.

thank you for reply.

it also can work
<cron-trigger-value>0 0 0 ? * FRI#3</cron-trigger-value>

i want is every 2th, 4th and 5th friday.

any suggest?
thumbnail
Pankaj Kathiriya,修改在9 年前。

RE: question about cron-trigger-value

Liferay Master 帖子: 722 加入日期: 10-8-5 最近的帖子
As per documentation CronExpression, FRI#3,FRI#4,FRI#5 is not allowed as its multiple expression.

You can specify multiple trigger values separately by multiple cron tags.
Penney li,修改在8 年前。

RE: question about cron-trigger-value

New Member 发布: 1 加入日期: 15-6-24 最近的帖子
I use another crontab syntax generator is at http://www.crontab-generator.org/.