[bigdata-046] eclipse+spring开发web然后部署到tomcat
1. 用eclipse开发spring,需要使用相关的ide
其内容如下: package com.tanzhishuju; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; @Controller public class SampleController { @RequestMapping("/greeting") public String greeting(@RequestParam(value="name",required=false,defaultValue="world") String name,Model model){ model.addAttribute("name",name); return "greeting"; } } 5.2 在src/main/resources/templates下更加greeting.html文件 <!DOCTYPE HTML> <html xmlns:th="http://www.thymeleaf.org"> <head> <title>Greeting started</title> <meta http-equiv="Content-Type" content="text/html; chareset=UTF-8"/> </head> <body> <p th:text="'hello,'+${name}+'!'"/> </body> </html> 5.3 增加多个依赖jar包 spring-boot-starter-web spring-boot-starter-test spring-boot-devtools spring-boot-starter-thymeleaf javax.servlet-api 5.4 在项目上点击右键,选择run as -> java application。 5.5 在浏览器输入localhost:8080/greeting,能看到helloworld,表明运行成功。 6. 将5.项目做成war包,然后部署到tomcat 6.1 修改application.java成内容如下 package com.tanzhishuju; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.support.SpringBootServletInitializer; @SpringBootApplication public class Springdemo20170219Application extends SpringBootServletInitializer { /* public static void main(String[] args) { SpringApplication.run(Springdemo20170219Application.class,args); } */ @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { // 注意这里要指向原先用main方法执行的Application启动类 return builder.sources(Springdemo20170219Application.class); } }6.2 将项目export成war包 6.2.1 修改pom.xml,将打包格式修改成war,然后在项目上点击右键,选择maven-update,更新整个项目。 6.2.2 在项目上点击右键选择export成war文件,叫springdemo20170219.war 6.2.3 将springdemo20170219.war放到tomcat的webapps里,然后启动tomcat,也就是bin/startup.sh。 6.2.4 在浏览器地址栏输入localhost:8080/springdemo20170219/greeting,能看到hellowrold,表明成功。 7.至此,eclipse+springt+tomcat的一个完成开发流程就做完了。这些是核心精简流程,其他都是在这个核心流程上做增量。 (编辑:淮安站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |