Fórumok

question about cron-trigger-value

Scarletake Bwi, módosítva 3 év-val korábban

question about cron-trigger-value

Expert Bejegyzések: 326 Csatlakozás dátuma: 2010.12.20. Legújabb bejegyzések
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, módosítva 9 év-val korábban

RE: question about cron-trigger-value

Regular Member Bejegyzések: 231 Csatlakozás dátuma: 2011.03.23. Legújabb bejegyzések
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, módosítva 3 év-val korábban

RE: question about cron-trigger-value

Expert Bejegyzések: 326 Csatlakozás dátuma: 2010.12.20. Legújabb bejegyzések
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, módosítva 9 év-val korábban

RE: question about cron-trigger-value

Liferay Master Bejegyzések: 722 Csatlakozás dátuma: 2010.08.05. Legújabb bejegyzések
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, módosítva 8 év-val korábban

RE: question about cron-trigger-value

New Member Bejegyzés: 1 Csatlakozás dátuma: 2015.06.24. Legújabb bejegyzések
I use another crontab syntax generator is at http://www.crontab-generator.org/.