我有一个与tomcat运行良好的spring mvc应用程序。
但是当我尝试使用weblogic运行时不要重定向。
例如:
我的jsp有一个链接:<a href="new">New User</a>
我的控制器抓住了网址:
@RequestMapping(value = { "/new" }, method = { org.springframework.web.bind.annotation.RequestMethod.GET })
public ModelAndView newUser() {
ModelAndView model = new ModelAndView("UserForm");
model.addObject("user", new User());
return model;
}
这在tomcat上运行,但是当我尝试使用weblogic时,他会重定向到“http://localhost:7001/new”并且必须是“http://localhost:7001/HibernateJavaBased/new”
如何设置weblogic服务器?
更新1:我的应用程序是java配置,这是初始化程序
public class SpringWebAppInitializer implements WebApplicationInitializer {
public void onStartup(ServletContext container) throws ServletException {
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.register(ApplicationContextConfig.class);
ctx.setServletContext(container);
ServletRegistration.Dynamic servlet = container.addServlet("dispatcher", new DispatcherServlet(ctx));
servlet.setLoadOnStartup(1);
servlet.addMapping("/");
System.out.println(ctx.getServletContext().getContextPath());
servlet.setInitParameter("contextClass", ctx.getClass().getName());
container.addListener(new ContextLoaderListener(ctx));
}
}
AppConfig:
@Configuration
@EnableWebMvc
@ComponentScan({ "net.codejava.spring" })
@EnableTransactionManagement
public class ApplicationContextConfig extends WebMvcConfigurerAdapter {
@Bean(name = { "viewResolver" })
public InternalResourceViewResolver getViewResolver() {
InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
viewResolver.setPrefix("/WEB-INF/views/");
viewResolver.setSuffix(".jsp");
return viewResolver;
}
答案 0 :(得分:1)
也许在tomcat上你已经配置了上下文根。您可以使用文件weblogic.xml配置Web逻辑中的上下文根。如果您还没有文件weblogic.xml,请在/ WEB-INF /目录下创建一个新文件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.4/weblogic-web-app.xsd">
<wls:weblogic-version>12.2.1</wls:weblogic-version>
<wls:context-root>HibernateJavaBased</wls:context-root>
</wls:weblogic-web-app>
希望这有帮助