# simple-ping-service **Repository Path**: mirrors_nortal/simple-ping-service ## Basic Information - **Project Name**: simple-ping-service - **Description**: Simple JAVA based ping service. Checks if web application is allived. Result is a HTML page. Can configured for sending notification via email when some web application status changed. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-04-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # simple-ping-service Simple JAVA based ping service. Checks if web application is alive. Result is a HTML page. Can configured for sending notification via email when some web application status changed. ## Configuration See property sample file **ping.properties.sample**. Create your own file with name **ping.properties** ## REST ping service Configuration keys: - ping.module.X.url = request URL for check - ping.module.X.name = module name for report The JSON for REST ping service must contain two attributes **time** and **module**: { "time": "2015-09-14T14:43:13.262+03:00", "module": "client" } ## Simple URL check service Configuration keys: - check.module.X.url = request URL for check - check.module.X.name = module name for report Checks if the website is responding. ## Creating a jar File in Eclipse In Eclipse Help contents, expand "Java development user guide" ==> "Tasks" ==> "Creating JAR files." Follow the instructions for "Creating a new JAR file" or "Creating a new runnable JAR file." ## Creating a jar file using maven mvn clean compile assembly:single