使用Spring3.2 MVC和嵌入式jetty9

时间:2013-10-03 21:16:00

标签: spring-mvc embedded-jetty

我正在尝试使用spring mvc实现一个嵌入式jetty服务器进行调度。我尝试了几个教程,但是monstyl它们已经过时或者没有使用嵌入式码头。

到目前为止,我在intellij idea中从零开始创建了一个新的spring mvc项目。

  • 的src /

    • 主/
      • 的java /
        • com.springapp.mvc /
          • HelloController.java
          • Launcher.java
      • web应用/
        • WEB-INF /
          • MVC-调度-servlet.xml中
          • 的web.xml
  • 的pom.xml

HelloController.java

@Controller
@RequestMapping("/")
public class HelloController {
    @RequestMapping(method = RequestMethod.GET)
    public String printWelcome(ModelMap model) {
        model.addAttribute("message", "Hello world!");
        return "hello";
    }
}

Launcher.java

public class Launcher {

    public static void main(String[] args) throws Exception {
        Server server = new Server(8080);

        //todo: implementation to use dispatcher-servlet...

        server.start();
        server.join();
    }

}

MVC-调度-servlet.xml中

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="com.springapp.mvc"/>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

</beans>

的web.xml

<web-app version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

    <display-name>Spring MVC Application</display-name>

    <servlet>
        <servlet-name>mvc-dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

如何正确告诉服务器使用调度程序servlet? 我尝试了一些东西,但没有真正有效。

1 个答案:

答案 0 :(得分:0)

每个感兴趣的人的解决方案......(在scala而不是java中)

val server: Server = new Server(8080)
private val root: WebAppContext = new WebAppContext

root.setContextPath("/")
root.setDescriptor("src/main/webapp/web.xml")
root.setResourceBase("src/main/webapp/"))
root.setParentLoaderPriority(true)
server.setHandler(root)

server.start()
server.join()