gpt4 book ai didi

java - 403 Forbidden - 在 Weblogic 中部署 Spring Boot 应用程序

转载 作者:行者123 更新时间:2023-12-01 17:57:57 26 4
gpt4 key购买 nike

我有一个应用程序,目前正在尝试将其转换为 Spring Boot,但在配置 Weblogic 来运行该应用程序时遇到问题。我在 HTTP 请求上收到 403 Forbidden 响应。

<小时/>

任何帮助将不胜感激!

<小时/>

这是我的@SpringBootApplication类。

@SpringBootApplication
public class AgisSpringApplication extends SpringBootServletInitializer implements WebApplicationInitializer {

public static void main(String[] args) {
SpringApplication.run(AgisSpringApplication.class, args);
}

@Override
public void onStartup(ServletContext context) throws ServletException {

}
}
<小时/>

这是我的weblogic.xml

<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-web-app
xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd
http://xmlns.oracle.com/weblogic/weblogic-web-app
http://xmlns.oracle.com/weblogic/weblogic-web-app/1.7/weblogic-web-app.xsd">
<wls:weblogic-version>12.1.3</wls:weblogic-version>
<wls:context-root>agis-spring</wls:context-root>
<wls:container-descriptor>
<wls:prefer-application-packages>
<wls:package-name>org.slf4j.*</wls:package-name>
</wls:prefer-application-packages>
</wls:container-descriptor>
</wls:weblogic-web-app>
<小时/>

这是我目前唯一的 Controller

@RestController
public class MapController {

private TemplateService templateService;

public MapController(TemplateService templateService) {
this.templateService = templateService;
}

@GetMapping("/")
public String getName() throws Exception {
return templateService.getTemplate("map.vm");
}
}
<小时/>

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.group</groupId>
<artifactId>agis-spring</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>

<name>agis-spring</name>
<description></description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-velocity</artifactId>
<version>1.4.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

最佳答案

1) 您的 Application.java 看起来不正确。试试这个:

@SpringBootApplication
public class Application
extends SpringBootServletInitializer
implements WebApplicationInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(Application.class);
}

public static void main(String[] args) throws Exception {
SpringApplication.run(Application.class, args);
}
}

2) 确保您的 weblogic.xml 放置在 src/main/webapp/WEB-INF/ 下。

3) 确保将应用程序打包到 war 中。

<packaging>war</packaging>

4) 确保嵌入式 tomcat 已禁用。

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>

5) 我不确定是否可以将 wls:package-name 指定为通配符。根据spring-boot documentation应该是这样的:

<wls:package-name>org.slf4j</wls:package-name>

6) 通过执行 mvn clean package 构建 war 工件。

.war 工件将被放置到 your-app/build/lib 中。使用此文件部署到服务器中。

希望其中一些提示能够解决问题。

关于java - 403 Forbidden - 在 Weblogic 中部署 Spring Boot 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43127327/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com