我的Controller类存在问题:我使用maven创建项目,并添加了hibernate和Spring的依赖项。启动应用程序时,我可以从servlet进入第一页,但是当我调用任何方法时,都会得到404。我尝试了许多解决方案,但是没有人使用,我使用Web逻辑服务器,对此有一些特殊的配置。服务器?在项目中,这是我的实际情况:
AppController.java
@Test
public void simpleTestFailure() {
check(
() -> Assert.assertEquals(true, false),
() -> Assert.assertEquals(5, 5));
}
@Test
public void simpleTestOK() {
check(
() -> Assert.assertEquals(5, 5));
}
private void check(Runnable... runnables) {
boolean success = true;
int index = 0;
for (Runnable runnable : runnables) {
try {
index++;
runnable.run();
System.out.println(String.format("Assertion %s succeeded", index));
} catch (AssertionError ae) {
System.err.println(String.format("Assertion %s failed:\n%s", index, ae));
ae.printStackTrace(System.err);
success = false;
}
}
Assert.assertTrue(success);
}
我也尝试使用ModelAndView
registration.jsp
@Controller
@RequestMapping("/")
public class AppController {
@RequestMapping(value = "/two", method = RequestMethod.GET)
public String two() {
System.out.println("work?");
return "newFile";
}
}
web.xml
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Title</title>
<style type="text/css">
form {
display: inline-block;
}
</style>
</head>
<body>
<form action="/two" method="GET">
<p class="message">//Not registered?
<input type="submit" value="Create an account">
</p>
</form>
</body>
</html>
applicationContext.xml
<!DOCTYPE web-app
PUBLIC “-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN”
“http://java.sun.com/dtd/Web-app_2_3.dtd”>
<web-app>
<servlet>
<servlet-name>LDSServlet</servlet-name>
<servlet-class>com.reply.servlet.LDSServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>LDSServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
</web-app>
AppConfig.java
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
</beans>
pom.xml
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "com.reply.utility")
public class AppConfig {
@Bean
public ViewResolver viewResolver() {
InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
viewResolver.setViewClass(JstlView.class);
viewResolver.setPrefix("/WEB-INF/views/");
viewResolver.setSuffix(".jsp");
return viewResolver;
}
@Bean
public MessageSource messageSource() {
ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource();
mesageSource.setBasename("messages");
return messageSource;
}
}
在JSP和方法中,我尝试使用/和不使用/编写调用方法的值,但是结果是相同的。有人可以帮我吗?
答案 0 :(得分:1)
如果我正确理解了问题,则您有新的控制器组件和请求映射,应在表单提交时调用。
我在xml配置中看到以下问题
您没有在 web.xml 中使用spring DispatcherServlet
。此类负责处理和处理请求,并转发给适当的控制器
您正在 web.xml 中使用类com.reply.servlet.LDSServlet
定义映射。 LDSServlet
类的外观如何?
基本上DispatcherServlet
,将处理配置(控制器类和请求映射),并在请求到达时使用它来选择合适的控制器。
编辑:
您应该在表单操作中包含context-path
。
答案 1 :(得分:0)
尝试这种方式,对我来说很好。
@Controller
public class HelloController {
@RequestMapping(value = { "/", "/welcome**" }, method = RequestMethod.GET)
public ModelAndView welcomePage() {
ModelAndView model = new ModelAndView();
model.addObject("title", "Spring Security Hello World");
model.addObject("message", "This is welcome page!");
model.setViewName("hello");
return model;
}
答案 2 :(得分:0)
我解决了我的问题,进程“ oracle xe tns listener”使用我的端口8080,我想服务器阻塞了控制器上的调用。我找到了这个解决方案,因为我尝试在tomcat上启动我的应用程序,并且端口繁忙,所以我终止了该过程,然后我的应用程序在tomcat和Web逻辑服务器上进行了:)