All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.examples.undertow.helloworld.HelloWorldJSON Maven / Gradle / Ivy

There is a newer version: 0.66.0.1
Show newest version
package com.jwebmp.examples.undertow.helloworld;

import com.jwebmp.core.Page;
import com.jwebmp.core.annotations.PageConfiguration;

@PageConfiguration(url = "/jsontest",
		ignore = true)
public class HelloWorldJSON
		extends Page
{
	public HelloWorldJSON()
	{
		super();
		getPageFields().setAuthor("GedMarc");
		getPageFields().setKeywords("Some Random Keywords");
	}

	public static void main(String[] args)
	{
		System.out.println(new HelloWorldJSON().toString());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy