-
Notifications
You must be signed in to change notification settings - Fork 691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TOMEE-4358 - Load SpringWebUtils in the context class loader in TomEE w… #1165
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.apache.openejb.arquillian.tests.jaxrs.spring; | ||
|
||
import jakarta.ejb.Lock; | ||
import jakarta.ejb.LockType; | ||
import jakarta.ejb.Singleton; | ||
import jakarta.ws.rs.GET; | ||
import jakarta.ws.rs.Path; | ||
import jakarta.ws.rs.Produces; | ||
import jakarta.ws.rs.core.MediaType; | ||
|
||
@Singleton | ||
@Lock(LockType.READ) | ||
public class AlternativeGreeter { | ||
|
||
@Path("hello") | ||
@GET | ||
@Produces(MediaType.TEXT_PLAIN) | ||
public String sayHello() { | ||
return "Hello World!"; | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.apache.openejb.arquillian.tests.jaxrs.spring; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing header |
||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
@SpringBootApplication | ||
public class DemoApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(DemoApplication.class, args); | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package org.apache.openejb.arquillian.tests.jaxrs.spring; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing header |
||
|
||
import org.springframework.http.MediaType; | ||
import org.springframework.stereotype.Controller; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.ResponseBody; | ||
|
||
@Controller | ||
@RequestMapping("/greet") | ||
public class GreetingController { | ||
|
||
@GetMapping(produces = MediaType.TEXT_PLAIN_VALUE) | ||
@ResponseBody | ||
public String sayHello() { | ||
return "Hello World!"; | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.apache.openejb.arquillian.tests.jaxrs.spring; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing header |
||
|
||
import org.springframework.boot.builder.SpringApplicationBuilder; | ||
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; | ||
|
||
public class ServletInitializer extends SpringBootServletInitializer { | ||
|
||
@Override | ||
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { | ||
return application.sources(DemoApplication.class); | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 | ||
* | ||
* http://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.apache.openejb.arquillian.tests.jaxrs.spring; | ||
|
||
import org.apache.ziplock.WebModule; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.arquillian.junit.Arquillian; | ||
import org.jboss.arquillian.test.api.ArquillianResource; | ||
import org.jboss.shrinkwrap.api.ShrinkWrap; | ||
import org.jboss.shrinkwrap.api.exporter.ZipExporter; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.jboss.shrinkwrap.resolver.api.ResolutionException; | ||
import org.jboss.shrinkwrap.resolver.api.ResolvedArtifact; | ||
import org.jboss.shrinkwrap.resolver.api.maven.Maven; | ||
import org.jboss.shrinkwrap.resolver.api.maven.MavenResolvedArtifact; | ||
import org.jboss.shrinkwrap.resolver.api.maven.ScopeType; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.springframework.boot.loader.tools.Libraries; | ||
import org.springframework.boot.loader.tools.Library; | ||
import org.springframework.boot.loader.tools.LibraryCallback; | ||
import org.springframework.boot.loader.tools.LibraryScope; | ||
import org.springframework.boot.loader.tools.Repackager; | ||
|
||
import java.io.ByteArrayOutputStream; | ||
import java.io.File; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.net.URL; | ||
import java.util.Arrays; | ||
import java.util.stream.Collectors; | ||
|
||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
@RunWith(Arquillian.class) | ||
public class SpringWebappTest { | ||
|
||
@ArquillianResource | ||
private URL url; | ||
|
||
@Deployment(testable = false) | ||
public static WebArchive getArchive() throws Exception { | ||
MavenResolvedArtifact[] dependencies; | ||
try { // try offline first since it is generally faster | ||
dependencies = Maven.configureResolver() | ||
.workOffline() | ||
.loadPomFromFile("src/test/resources/spring-webmvc-pom.xml") | ||
.importCompileAndRuntimeDependencies().resolve().withTransitivity() | ||
.asResolvedArtifact(); | ||
} catch (ResolutionException re) { // try on central | ||
dependencies = Maven.resolver() | ||
.loadPomFromFile("src/test/resources/spring-webmvc-pom.xml") | ||
.importCompileAndRuntimeDependencies().resolve().withTransitivity() | ||
.asResolvedArtifact(); | ||
} | ||
|
||
|
||
final WebArchive archive = new WebModule(SpringWebappTest.class.getSimpleName()).getArchive(); | ||
archive.addClasses(AlternativeGreeter.class, DemoApplication.class, GreetingController.class, ServletInitializer.class); | ||
archive.addAsLibraries(toFiles(dependencies)); | ||
|
||
// repackage as a Spring Boot WAR file | ||
final File originalWarFile = File.createTempFile("test", ".war"); | ||
archive.as(ZipExporter.class).exportTo(originalWarFile, true); | ||
|
||
final Repackager repackager = new Repackager(originalWarFile); | ||
final File repackagedWarFile = File.createTempFile("repackaged", ".war"); | ||
|
||
repackager.repackage(repackagedWarFile, new MavenResolvedArtifactLibraries(dependencies)); | ||
|
||
final WebArchive repackaged = ShrinkWrap.createFromZipFile(WebArchive.class, repackagedWarFile); | ||
|
||
System.out.println(repackaged.toString(true)); | ||
return repackaged; | ||
} | ||
|
||
private static File[] toFiles(MavenResolvedArtifact[] dependencies) { | ||
return Arrays.stream(dependencies) | ||
.map(ResolvedArtifact::asFile) | ||
.collect(Collectors.toList()) | ||
.toArray(new File[dependencies.length]); | ||
} | ||
|
||
@Test | ||
public void validate() throws Exception { | ||
final String launchProfile = System.getProperty("arquillian.launch"); | ||
if ("tomee-embedded".equals(launchProfile)) { | ||
System.out.println("Skipping this test in TomEE embedded"); | ||
return; | ||
} | ||
|
||
final InputStream is = new URL(url.toExternalForm() + "hello").openStream(); | ||
final ByteArrayOutputStream os = new ByteArrayOutputStream(); | ||
|
||
int bytesRead; | ||
byte[] buffer = new byte[8192]; | ||
while ((bytesRead = is.read(buffer)) > -1) { | ||
os.write(buffer, 0, bytesRead); | ||
} | ||
|
||
is.close(); | ||
os.close(); | ||
|
||
final String output = new String(os.toByteArray(), "UTF-8"); | ||
assertNotNull("Response shouldn't be null", output); | ||
assertTrue("Output should contain: " + "Hello World!" + "\n" + output, output.contains("Hello World!")); | ||
} | ||
|
||
public static class MavenResolvedArtifactLibraries implements Libraries { | ||
|
||
private final MavenResolvedArtifact[] artifacts; | ||
|
||
public MavenResolvedArtifactLibraries(final MavenResolvedArtifact[] artifacts) { | ||
this.artifacts = artifacts; | ||
} | ||
|
||
@Override | ||
public void doWithLibraries(final LibraryCallback callback) throws IOException { | ||
for (final MavenResolvedArtifact artifact : artifacts) { | ||
callback.library(new Library(artifact.asFile(), toScope(artifact))); | ||
} | ||
} | ||
|
||
private LibraryScope toScope(MavenResolvedArtifact artifact) { | ||
final ScopeType scope = artifact.getScope(); | ||
if (ScopeType.COMPILE.equals(scope)) { | ||
return LibraryScope.COMPILE; | ||
} else if (ScopeType.RUNTIME.equals(scope)) { | ||
return LibraryScope.COMPILE; | ||
} else if (ScopeType.TEST.equals(scope)) { | ||
return LibraryScope.PROVIDED; | ||
} else if (ScopeType.PROVIDED.equals(scope)) { | ||
return LibraryScope.PROVIDED; | ||
} else if (ScopeType.SYSTEM.equals(scope)) { | ||
return LibraryScope.CUSTOM; | ||
} else if (ScopeType.IMPORT.equals(scope)) { | ||
return LibraryScope.CUSTOM; | ||
} | ||
|
||
throw new IllegalStateException("Unsupported scope: " + scope); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing header |
||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>3.1.11</version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Spring Boot 3 has a Java 17 baseline, so this will likely fail the Java 11 based build. I think, that we would need to build an exclusion for that test if we run with a runtime below 17. |
||
<relativePath/> <!-- lookup parent from repository --> | ||
</parent> | ||
<groupId>org.apache.openejb.arquillian.tests</groupId> | ||
<artifactId>spring-webmvc-deps</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<packaging>war</packaging> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.apache.tomcat.embed</groupId> | ||
<artifactId>*</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-tomcat</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.tomee</groupId> | ||
<artifactId>jakartaee-api</artifactId> | ||
<version>9.1.1</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing header