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

org.openrewrite.java.spring.framework.EnvironmentAcceptsProfiles Maven / Gradle / Ivy

Go to download

Eliminate legacy Spring patterns and migrate between major Spring Boot versions. Automatically.

There is a newer version: 5.19.0
Show newest version
/*
 * Copyright 2021 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.openrewrite.java.spring.framework; import org.openrewrite.ExecutionContext; import org.openrewrite.Preconditions; import org.openrewrite.Recipe; import org.openrewrite.TreeVisitor; import org.openrewrite.java.JavaIsoVisitor; import org.openrewrite.java.JavaParser; import org.openrewrite.java.JavaTemplate; import org.openrewrite.java.MethodMatcher; import org.openrewrite.java.search.UsesMethod; import org.openrewrite.java.tree.J; import java.util.stream.Collectors; public class EnvironmentAcceptsProfiles extends Recipe { private static final MethodMatcher MATCHER = new MethodMatcher("org.springframework.core.env.Environment acceptsProfiles(java.lang.String...)"); @Override public String getDisplayName() { return "Use `Environment#acceptsProfiles(Profiles)`"; } @Override public String getDescription() { return "`Environment#acceptsProfiles(String...)` was deprecated in Spring Framework 5.1."; } @Override public TreeVisitor getVisitor() { return Preconditions.check(new UsesMethod<>(MATCHER), new EnvironmentAcceptsProfilesVisitor()); } private static class EnvironmentAcceptsProfilesVisitor extends JavaIsoVisitor { @Override public J.MethodInvocation visitMethodInvocation(J.MethodInvocation method, ExecutionContext ctx) { if (MATCHER.matches(method)) { maybeAddImport("org.springframework.core.env.Profiles"); String template = "Profiles.of(" + method.getArguments().stream().map(a -> "#{any(java.lang.String)}").collect(Collectors.joining(",")) + ")"; method = JavaTemplate.builder(template) .imports("org.springframework.core.env.Profiles", "org.springframework.core.env.Environment") .javaParser(JavaParser.fromJavaVersion() .classpathFromResources(ctx, "spring-core-5.*")) .build() .apply( getCursor(), method.getCoordinates().replaceArguments(), method.getArguments().toArray() ); } return super.visitMethodInvocation(method, ctx); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy