com.webproject.checkpoint.AccessPoint.java Source code

Java tutorial

Introduction

Here is the source code for com.webproject.checkpoint.AccessPoint.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.webproject.checkpoint;

import org.springframework.boot.Banner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 *
 * @author qiuyue
 */
@SpringBootApplication
public class AccessPoint {
    public static void main(String[] args) {
        SpringApplication application = new SpringApplication(AccessPoint.class);
        application.setBannerMode(Banner.Mode.OFF);
        application.setLogStartupInfo(false);
        application.run(args);
    }
}