What type of Cron Schedule is this?How do I list all cron jobs for all users?Running a cron every 30 secondssetup cron tab to specific time of during weekdaysWrite a simple cron job to run a Java classHow to create cron job using PHP?Can Quartz Scheduler (cron) schedule multiple jobs at the same execution time?How to run cron job using Quartz Scheduler framework in Java?What is the cron definition for each minute for a job in grails?Scheduling a job to run every Nth week and specific week days starting on specific date with Quartz (Scala)Spring Cron Expression - Not Running on Schedule

Does Norwegian overbook flights?

Why doesn't 'd /= d' throw a division by zero exception?

Did a flight controller ever answer Flight with a no-go?

Problem when including a foreach loop

Which cells to pick to get a pure sample of DNA without precise equipment?

Why do gliders have bungee cords in the control systems and what do they do? Are they on all control surfaces? What about ultralights?

What is the difference between Major and Minor Bug?

What is the best type of paint to paint a shipping container?

Do they have Supervillain(s)?

Read file lines into shell line separated by space

Could George I (of Great Britain) speak English?

Numbers Decrease while Letters Increase

Prove your innocence

Where was Carl Sagan working on a plan to detonate a nuke on the Moon? Where was he applying when he leaked it?

Why in most German places is the church the tallest building?

Sum ergo cogito?

Arduino oscilloscope voltage divider design

Showing that the limit of non-eigenvector goes to infinity

Would this system work to purify water?

How do I, an introvert, communicate to my friend and only colleague, an extrovert, that I want to spend my scheduled breaks without them?

Two questions about typesetting a Roman missal

Understanding Parallelize methods

Transposing from C to Cm?

Why do banks “park” their money at the European Central Bank?



What type of Cron Schedule is this?


How do I list all cron jobs for all users?Running a cron every 30 secondssetup cron tab to specific time of during weekdaysWrite a simple cron job to run a Java classHow to create cron job using PHP?Can Quartz Scheduler (cron) schedule multiple jobs at the same execution time?How to run cron job using Quartz Scheduler framework in Java?What is the cron definition for each minute for a job in grails?Scheduling a job to run every Nth week and specific week days starting on specific date with Quartz (Scala)Spring Cron Expression - Not Running on Schedule






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















0 48 16 ? * MON-FRI


What is this? All the cron examples I see on the internet is minutes at the start. But this cron job runs Mon-Fri, every week at 16:48 hrs.



The 0 at the start and the ? throws me off here. This code is written in Java using quartz.










share|improve this question






























    0















    0 48 16 ? * MON-FRI


    What is this? All the cron examples I see on the internet is minutes at the start. But this cron job runs Mon-Fri, every week at 16:48 hrs.



    The 0 at the start and the ? throws me off here. This code is written in Java using quartz.










    share|improve this question


























      0












      0








      0








      0 48 16 ? * MON-FRI


      What is this? All the cron examples I see on the internet is minutes at the start. But this cron job runs Mon-Fri, every week at 16:48 hrs.



      The 0 at the start and the ? throws me off here. This code is written in Java using quartz.










      share|improve this question














      0 48 16 ? * MON-FRI


      What is this? All the cron examples I see on the internet is minutes at the start. But this cron job runs Mon-Fri, every week at 16:48 hrs.



      The 0 at the start and the ? throws me off here. This code is written in Java using quartz.







      cron






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 17:52









      Silencer310Silencer310

      5184 silver badges19 bronze badges




      5184 silver badges19 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          1















          You almost answered your own question. This is not an actual cron schedule. This is a Quartz schedule.



          Quartz is guilty of using confusing terminology by referring to this as a "Cron Expression" (see http://www.quartz-scheduler.org/api/2.3.0/org/quartz/CronExpression.html). I suppose calling it a CronLikeExpression or an InspiredByCronExpression would have been too wordy.



          You'll see from that JavaDoc page that the 0 at the beginning is the value of a seconds field and the ? in the day-of-month field means "any day of the month".






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55383651%2fwhat-type-of-cron-schedule-is-this%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1















            You almost answered your own question. This is not an actual cron schedule. This is a Quartz schedule.



            Quartz is guilty of using confusing terminology by referring to this as a "Cron Expression" (see http://www.quartz-scheduler.org/api/2.3.0/org/quartz/CronExpression.html). I suppose calling it a CronLikeExpression or an InspiredByCronExpression would have been too wordy.



            You'll see from that JavaDoc page that the 0 at the beginning is the value of a seconds field and the ? in the day-of-month field means "any day of the month".






            share|improve this answer





























              1















              You almost answered your own question. This is not an actual cron schedule. This is a Quartz schedule.



              Quartz is guilty of using confusing terminology by referring to this as a "Cron Expression" (see http://www.quartz-scheduler.org/api/2.3.0/org/quartz/CronExpression.html). I suppose calling it a CronLikeExpression or an InspiredByCronExpression would have been too wordy.



              You'll see from that JavaDoc page that the 0 at the beginning is the value of a seconds field and the ? in the day-of-month field means "any day of the month".






              share|improve this answer



























                1














                1










                1









                You almost answered your own question. This is not an actual cron schedule. This is a Quartz schedule.



                Quartz is guilty of using confusing terminology by referring to this as a "Cron Expression" (see http://www.quartz-scheduler.org/api/2.3.0/org/quartz/CronExpression.html). I suppose calling it a CronLikeExpression or an InspiredByCronExpression would have been too wordy.



                You'll see from that JavaDoc page that the 0 at the beginning is the value of a seconds field and the ? in the day-of-month field means "any day of the month".






                share|improve this answer













                You almost answered your own question. This is not an actual cron schedule. This is a Quartz schedule.



                Quartz is guilty of using confusing terminology by referring to this as a "Cron Expression" (see http://www.quartz-scheduler.org/api/2.3.0/org/quartz/CronExpression.html). I suppose calling it a CronLikeExpression or an InspiredByCronExpression would have been too wordy.



                You'll see from that JavaDoc page that the 0 at the beginning is the value of a seconds field and the ? in the day-of-month field means "any day of the month".







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 28 at 0:20









                ottomeisterottomeister

                3,4472 gold badges15 silver badges21 bronze badges




                3,4472 gold badges15 silver badges21 bronze badges





















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55383651%2fwhat-type-of-cron-schedule-is-this%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해