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

org.springframework.aot.generate.GenerationContext Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2022 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.aot.generate;

import org.springframework.aot.hint.ProxyHints;
import org.springframework.aot.hint.ReflectionHints;
import org.springframework.aot.hint.ResourceHints;
import org.springframework.aot.hint.RuntimeHints;
import org.springframework.aot.hint.SerializationHints;

/**
 * Central interface used for code generation.
 *
 * 

A generation context provides: *

    *
  • Management of all {@linkplain #getGeneratedClasses() generated classes}, * including naming convention support.
  • *
  • Central management of all {@linkplain #getGeneratedFiles() generated files}.
  • *
  • Support for recording {@linkplain #getRuntimeHints() runtime hints}.
  • *
* *

If a dedicated round of code generation is required while processing, it * is possible to create a specialized context using {@link #withName(String)}. * * @author Phillip Webb * @author Stephane Nicoll * @since 6.0 */ public interface GenerationContext { /** * Get the {@link GeneratedClasses} used by the context. *

All generated classes are written at the end of AOT processing. * @return the generated classes */ GeneratedClasses getGeneratedClasses(); /** * Get the {@link GeneratedFiles} used by the context. *

Used to write resource, java source, or class bytecode files. * @return the generated files */ GeneratedFiles getGeneratedFiles(); /** * Get the {@link RuntimeHints} used by the context. *

Used to record {@linkplain ReflectionHints reflection}, * {@linkplain ResourceHints resource}, {@linkplain SerializationHints * serialization}, and {@linkplain ProxyHints proxy} hints so that the * application can run as a native image. * @return the runtime hints */ RuntimeHints getRuntimeHints(); /** * Create a new {@link GenerationContext} instance using the specified * name to qualify generated assets for a dedicated round of code * generation. *

If the specified name is already in use, a unique sequence is added * to ensure the name is unique. * @param name the name to use * @return a specialized {@link GenerationContext} for the specified name */ GenerationContext withName(String name); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy