https://bit.ly/2QnU5nQ
This pagePreparations for todays Docker workshop
Bring up Windows PowerShell # It is assumed you have Docker for Windows installed
Docker installation
PS:> docker version
--> Should show both server and client details
package com.amazonaws.samples; | |
import com.amazonaws.auth.AWSCredentialsProvider; | |
import com.amazonaws.auth.AWSStaticCredentialsProvider; | |
import com.amazonaws.auth.BasicAWSCredentials; | |
import com.amazonaws.auth.BasicSessionCredentials; | |
import com.amazonaws.client.builder.AwsClientBuilder; | |
import com.amazonaws.services.s3.AmazonS3; | |
import com.amazonaws.services.s3.AmazonS3ClientBuilder; | |
import com.amazonaws.services.s3.model.Bucket; |
PS:> docker version
--> Should show both server and client details
docker [resource/object] [command] [options] [args]
1. $ docker --version
2. $ docker version
Go to:
Window >> Preferences >> Java >> Editor >> Content Assist >> Auto activation triggers for java,
and enter .abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
this will trigger the auto activation for class names, methods, etc...
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
/** | |
* Levels: ERROR >> WARN >> INFO >> DEBUG >> TRACE | |
*/ | |
public class LogDemoApplication { | |
private static final Logger logger = LoggerFactory.getLogger(PcsBatchApplication.class); | |
public static void main(String[] args) { |