首页 > 代码库 > Java Spring MVC项目搭建(三)——“Hello World”
Java Spring MVC项目搭建(三)——“Hello World”
在Spring 的配置文件里,我们定义了一个bean ,Spring 会在启动时候会生成对象。
<bean id = "helloworld" class="com.game.controller.Helloworld"> </bean>
现在我们来看看这个文件
首先在Java Resource -> src上 右键点击-> new ->package 建立com.game.controller 建立一个包,之后在这个包上右键点击new->class ,类名为Helloworld,之后点击Finish.之后项目结构是这样:
下面我看看看Helloworld.java里面的内容:
package com.game.controller;import java.io.IOException;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;@Controllerpublic class Helloworld { @RequestMapping("/helloworld") //此处控制浏览器里访问路径 具体为:/SpringDemo/helloworld public void helloWorld(HttpServletRequest request, HttpServletResponse response) throws IOException { //输出字符串 response.getWriter().append("hello world"); }}
helloworld内容很简单通过servlet输出对象输出字符串“hello world”。下面我们启动服务器并且在浏览器里运行看看结果。
首先配置服务器(事先必须安装好tomcat),在Helloworld.java右键选择 Run Server,选中我们配置好的tomcat 8.5
启动服务器:
启动成功之后,打开浏览器输入http://localhost:8080/SpringDemo/helloworld :
Java Spring MVC项目搭建(三)——“Hello World”
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。