Posts

Showing posts from January 29, 2019

1377

Image
SÉCULOS: Século XIII — Século XIV — Século XV DÉCADAS: 1320 • 1330 • 1340 • 1350 • 1360 • 1370 • 1380 • 1390 • 1400 • 1410 • 1420 ANOS: 1372 • 1373 • 1374 • 1375 • 1376 • 1377 • 1378 • 1379 • 1380 • 1381 • 1382 Outros projetos Wikimedia também contêm material sobre este tema: Textos originais no Wikisource Wikisource 1377 em outros calendários Calendário gregoriano 1377 MCCCLXXVII Ab urbe condita 2130 Calendário arménio N/A Calendário chinês 4073 – 4074 Calendário judaico 5137 – 5138 Calendários hindus - Vikram Samvat - Shaka Samvat - Kali Yuga 1432 – 1433 1299 – 1300 4478 – 4479 Calendário persa 755 – 756 Calendário islâmico 779 – 780 Calendário rúnico 1627 1377 ( MCCCLXXVII , na numeração romana) foi um ano comum do século XIV do Calendário Juliano, da Era de Cristo, e a sua letra dominical foi D ( 53 semanas), teve início a uma quinta-feira e terminou também

Spring TaskScheduling with HashMap

Image
0 $begingroup$ I am currently developing a Task Scheduler to run different methods at a certain time. In general it is a Spring-boot application an task execution/scheduling is just a very tiny piece of the whole project. My idea is to define several Runnables that execute depending on a CronTrigger. In the Runnable I create an object Job that holds information about the current task, like startTime , status and others. public class Job { private Long id; private Class clazz; private Date startTime; private boolean status; private String parameter; private CronTrigger cronTrigger; private String exception; Job(long id, Class<?> clazz, boolean status, Date startTime, String parameter, CronTrigger cronTrigger, String e

Implement a Lambda function to run commands via SSM

Image
0 I have a run document in ssm to install some agents on the server. Now, I wanted to automate this task by running these documents whenever a new instance is launched. I want to achieve this through aws lambda(script to implement run commands upon launch of a new instance) Any help would be appreciated !!! amazon-web-services aws-lambda ssm share | improve this question asked Nov 23 '18 at 5:03 AKSHAY NARAYAN AKSHAY NARAYAN 1 add a comment  |