运用springboot搭建并部署web项目的示例

前言

一直以来都是用springmvc+mybatis进行后端接口开发工作,最近闲来无事,根据现有功能需求,用springboot+mybatis部署一套简单的web项目。

所用工具

  1. IntelliJ IDEA 2018.1.4
  2. JDK 1.8
  3. apache-tomcat-8.0.50

所解决的问题

1、如何用idea创建springboot项目

2、如何进行 服务器、数据库、mybatis、视图解析器的配置

3、如何使用mybatis generator 自动生成代码

4、如何使用multipart进行文件上传

5、如何运用springboot的事务

6、如何打包进行tomcat部署

运用idea创建springboot项目

1、打开IDEA,File -> New -> Project,选择Spring Initializr,然后next。

2、修改Ariifact,下面的Name、package会自动修改;Packaging有两种模式,一种是Jar,一种是War;因为springboot中自带了tomcat,因此可以将项目打成jar,直接运行;而我现有项目是部署到tomcat上,因此我需要打成war包;然后next。

3、设置项目依赖,然后next ,进入下一页 ,设置project name,点击finish完成。

4、进入项目

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.example</groupId>
  <artifactId>springbootdemo</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>

  <name>springbootdemo</name>
  <description>Demo project for Spring Boot</description>

  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.2.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
  </parent>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-jdbc</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
      <groupId>org.mybatis.spring.boot</groupId>
      <artifactId>mybatis-spring-boot-starter</artifactId>
      <version>1.3.2</version>
    </dependency>

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-devtools</artifactId>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.microsoft.sqlserver</groupId>
      <artifactId>mssql-jdbc</artifactId>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-tomcat</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>

无配置文件的springmvc

通过两个例子:1、http请求访问并渲染页面 2、http请求返回json字符串

-配置数据源、视图渲染

-添加视图渲染pom依赖

-创建WelcomeController、welcome.jsp

新增之后的项目结构

application.yml 配置数据源 和 视图渲染

# 数据源、视图配置
spring:
 datasource:
   url: jdbc:sqlserver://xx:1433;DatabaseName=xx
   username: xx
   password: xx
   driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
 mvc:
  view:
   prefix: /WEB-INF/views/
   suffix: .jsp

pom.xml新增视图渲染依赖

<!-- 使用 jsp 必要依赖 -->
    <dependency>
      <groupId>org.apache.tomcat.embed</groupId>
      <artifactId>tomcat-embed-jasper</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>jstl</artifactId>
    </dependency>

创建WelcomeController

package com.example.springbootdemo.web;

import com.example.springbootdemo.entity.Welcome;
import com.example.springbootdemo.response.Response;
import com.example.springbootdemo.response.ResponseCode;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import java.util.ArrayList;
import java.util.List;

@Controller
@RequestMapping("/welcome")
public class WelcomeController {
  /**
   * 访问welcome.jsp页面
   * @return
   */
  @RequestMapping("welcomeIndex")
  public ModelAndView welcomeIndex(){
    ModelAndView mv = new ModelAndView();
    mv.setViewName("welcome");
    mv.addObject("name","xx");
    return mv;
  }

  /**
   * 返回json字符串
   * @return
   */
  @RequestMapping("getWelcomeInfo")
  @ResponseBody
  public Response getWelcomeInfo(){
    /**
     * 测试数据
     */
    List<Welcome> welcomes = new ArrayList<>();
    Welcome w1 = new Welcome();
    w1.setId("1");
    w1.setName("xx1");
    w1.setAge(11);
    w1.setGender("女");

    Welcome w2 = new Welcome();
    w2.setId("2");
    w2.setName("xx2");
    w2.setAge(22);
    w2.setGender("男");
    welcomes.add(w1);
    welcomes.add(w2);

    Response response = new Response();
    response.setData(welcomes);
    response.setRetcode(ResponseCode.SUCCESS);
    response.setRetdesc("Success");
    return response;
  }
}

创建welcome.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
  <title>视图渲染</title>
</head>
<body>
  您好,${name}
</body>
</html>

启动项目,并访问

http://localhost:8080/welcome/getWelcomeInfo

http://localhost:8080/welcome/welcomeIndex

使用mybatis generator自动生成代码

用于为表创建 *Mapper.xml、model、dao文件

在pom.xml 添加mybatis generator 自动生成代码插件

<build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
      <!-- mybatis generator 自动生成代码插件 -->
      <plugin>
        <groupId>org.mybatis.generator</groupId>
        <artifactId>mybatis-generator-maven-plugin</artifactId>
        <version>1.3.2</version>
        <configuration>
          <configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>
          <overwrite>true</overwrite>
          <verbose>true</verbose>
        </configuration>
      </plugin>
    </plugins>
  </build>

在上面pom.xml配置的pugin路径resources/generator 文件夹下添加generatorConfig.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
    PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
    "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
  <!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包-->
  <classPathEntry location="C:\Users\.m2\repository\com\microsoft\sqlserver\mssql-jdbc\6.2.2.jre8\mssql-jdbc-6.2.2.jre8.jar"/>
  <context id="DB2Tables" targetRuntime="MyBatis3">
    <commentGenerator>
      <property name="suppressDate" value="true"/>
      <!-- 是否去除自动生成的注释 true:是 : false:否 -->
      <property name="suppressAllComments" value="true"/>
    </commentGenerator>
    <!--数据库链接URL,用户名、密码 -->
    <jdbcConnection driverClass="com.microsoft.sqlserver.jdbc.SQLServerDriver" connectionURL="jdbc:sqlserver://xx:1433;DatabaseName=xx" userId="xx" password="xx">
    </jdbcConnection>
    <javaTypeResolver>
      <property name="forceBigDecimals" value="false"/>
    </javaTypeResolver>
    <!-- 生成模型的包名和位置-->
    <javaModelGenerator targetPackage="com.example.springbootdemo.entity" targetProject="src/main/java">
      <property name="enableSubPackages" value="true"/>
      <property name="trimStrings" value="true"/>
    </javaModelGenerator>
    <!-- 生成映射文件的包名和位置-->
    <sqlMapGenerator targetPackage="mybatis" targetProject="src/main/resources">
      <property name="enableSubPackages" value="true"/>
    </sqlMapGenerator>
    <!-- 生成DAO的包名和位置-->
    <javaClientGenerator type="XMLMAPPER" targetPackage="com.example.springbootdemo.mapper" targetProject="src/main/java">
      <property name="enableSubPackages" value="true"/>
    </javaClientGenerator>
    <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
    <table tableName="xx" domainObjectName="StudentBinding" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  </context>
</generatorConfiguration>

使用maven中的mybatis-generator:generate根据数据库里面表生产相关的类

Edit Configurations -> 添加 -> Maven

 配置mybatis

在application.yml 中添加mybatis的配置

# mybatis配置
mybatis:
 mapper-locations: classpath*:mybatis/*Mapper.xml
 type-aliases-package: com.example.springbootdemo.entity

在StudentBindingMapper.java中添加 @Repository("studentBindingMapper")注解才能使用@MapperScan扫描到

@Repository("studentBindingMapper")
public interface StudentBindingMapper {}

在SpringbootdemoApplication.java添加@MapperScan

package com.example.springbootdemo;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
@MapperScan("com.example.springbootdemo.mapper")
public class SpringbootdemoApplication {

  public static void main(String[] args) {
    SpringApplication.run(SpringbootdemoApplication.class, args);
  }
}

添加service、controller层

项目层级

添加StudentBindingService

package com.example.springbootdemo.service;
import com.example.springbootdemo.entity.StudentBinding;
import java.util.List;

public interface StudentBindingService {
  int deleteByPrimaryKey(Long id);
  int insert(StudentBinding record);
  int insertSelective(StudentBinding record);
  StudentBinding selectByPrimaryKey(Long id);
  int updateByPrimaryKeySelective(StudentBinding record);
  int updateByPrimaryKey(StudentBinding record);
  void validTransaction(Long id);
  List<StudentBinding> getStudentBindByQuery(StudentBinding record);
}

添加StudentBindingServiceImpl

package com.example.springbootdemo.service.impl;

import com.example.springbootdemo.entity.StudentBinding;
import com.example.springbootdemo.mapper.StudentBindingMapper;
import com.example.springbootdemo.service.StudentBindingService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;

@Service(value = "studentBindingService")
public class StudentBindingServiceImpl implements StudentBindingService {
  @Autowired
  private StudentBindingMapper studentBindingMapper;

  @Override
  public int deleteByPrimaryKey(Long id) {
    return studentBindingMapper.deleteByPrimaryKey(id);
  }

  @Override
  public int insert(StudentBinding record) {
    return studentBindingMapper.insert(record);
  }

  @Override
  public int insertSelective(StudentBinding record) {
    return studentBindingMapper.insertSelective(record);
  }

  @Override
  public StudentBinding selectByPrimaryKey(Long id) {
    return studentBindingMapper.selectByPrimaryKey(id);
  }

  @Override
  public int updateByPrimaryKeySelective(StudentBinding record) {
    return studentBindingMapper.updateByPrimaryKeySelective(record);
  }

  @Override
  public int updateByPrimaryKey(StudentBinding record) {
    return studentBindingMapper.updateByPrimaryKey(record);
  }

  @Override
  @Transactional
  public void validTransaction(Long id){
    // 删除之后,插入该id的数据
    studentBindingMapper.deleteByPrimaryKey(id);

    StudentBinding record = new StudentBinding();
    record.setId(id);
    studentBindingMapper.insertSelective(record);
  }

  @Override
  public List<StudentBinding> getStudentBindByQuery(StudentBinding record) {
    return studentBindingMapper.getStudentBindByQuery(record);
  }
}

新增StudentBindingController

package com.example.springbootdemo.web;

import com.example.springbootdemo.entity.StudentBinding;
import com.example.springbootdemo.response.Response;
import com.example.springbootdemo.response.ResponseCode;
import com.example.springbootdemo.service.StudentBindingService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.ModelAndView;
import java.io.File;
import java.io.IOException;
import java.util.List;

@Controller
@RequestMapping(value = "/studentBind")
public class StudentBindingController {
  @Autowired
  private StudentBindingService studentBindingService;

  /**
   * 根据请求参数,删除绑定学生信息
   * @param id
   * @return
   */
  @RequestMapping("deleteByPrimaryKey")
  @ResponseBody
  public Response deleteByPrimaryKey(Long id){
    Response response = new Response();
    if(id==null){
      response.setRetcode(ResponseCode.PARAMARTER_ERROR);
      response.setRetdesc("参数错误");
      return response;
    }

    try{
      studentBindingService.deleteByPrimaryKey(id);
      response.setRetcode(ResponseCode.SUCCESS);
      response.setRetdesc("删除成功");
    }catch (Exception e){
      e.printStackTrace();
      response.setRetcode(ResponseCode.FAILED);
      response.setRetdesc("删除异常");
    }
    return response;
  }

  /**
   * 根据请求参数,添加绑定学生信息
   * @param record
   * @return
   */
  @RequestMapping("insertSelective")
  @ResponseBody
  public Response insertSelective(StudentBinding record){
    Response response = new Response();
    if(record==null){
      response.setRetcode(ResponseCode.PARAMARTER_ERROR);
      response.setRetdesc("参数错误");
      return response;
    }

    try{
      studentBindingService.insertSelective(record);
      response.setRetcode(ResponseCode.SUCCESS);
      response.setRetdesc("添加成功");
    }catch (Exception e){
      e.printStackTrace();
      response.setRetcode(ResponseCode.FAILED);
      response.setRetdesc("添加异常");
    }
    return response;
  }

  /**
   * 根据请求参数,查询绑定学生信息
   * @param id
   * @return
   */
  @RequestMapping("selectByPrimaryKey")
  @ResponseBody
  public Response selectByPrimaryKey(Long id){
    Response response = new Response();
    if(id==null){
      response.setRetcode(ResponseCode.PARAMARTER_ERROR);
      response.setRetdesc("参数错误");
      return response;
    }

    try{
      StudentBinding studentBinding = studentBindingService.selectByPrimaryKey(id);
      response.setData(studentBinding);
      response.setRetcode(ResponseCode.SUCCESS);
      response.setRetdesc("查询成功");
    }catch (Exception e){
      e.printStackTrace();
      response.setRetcode(ResponseCode.FAILED);
      response.setRetdesc("查询异常");
    }
    return response;
  }

  /**
   * 验证@Transaction注解是否好用
   * @param id
   * @return
   */
  @RequestMapping("validTransaction")
  @ResponseBody
  public Response validTransaction(Long id){
    Response response = new Response();
    if(id==null){
      response.setRetcode(ResponseCode.PARAMARTER_ERROR);
      response.setRetdesc("参数错误");
      return response;
    }

    try{
      studentBindingService.validTransaction(id);
      response.setRetcode(ResponseCode.SUCCESS);
    }catch (Exception e){
      e.printStackTrace();
      response.setRetcode(ResponseCode.FAILED);
    }
    return response;
  }

  /**
   * 渲染jsp页面
   * @return
   */
  @RequestMapping("welcomeIndex")
  public ModelAndView welcomeIndex(){
    List<StudentBinding> studentBindings = studentBindingService.getStudentBindByQuery(new StudentBinding());
//    model.addAttribute("studentBindings",studentBindings);
    ModelAndView mv = new ModelAndView();
    mv.setViewName("welcome");
    mv.addObject("studentBindings",studentBindings);
    return mv;
  }

  /**
   * 跳转到上传文件页面
   * @return
   */
  @RequestMapping("multipartIndex")
  public String multipartIndex(){
    return "multipart-index";
  }

  /**
   * 上传文件到指定目录
   * @param file
   * @return
   */
  @RequestMapping("/upload")
  @ResponseBody
  public Response upload(@RequestParam("file") MultipartFile file){
    Response response = new Response();
    if (file.isEmpty()){
      response.setRetcode(ResponseCode.PARAMARTER_ERROR);
      response.setRetdesc("参数错误");
      return response;
    }

    try {
      String filePath = "D:\\ceshi\\upload\\";
      File dir = new File(filePath);
      if(!dir.isDirectory()){
        dir.mkdir();
      }

      String fileOriginalName = file.getOriginalFilename();
      File writeFile = new File(filePath + fileOriginalName);
      //文件写入磁盘
      file.transferTo(writeFile);

      response.setRetcode(ResponseCode.SUCCESS);
      response.setRetdesc("上传成功");
    } catch (IOException e) {
      e.printStackTrace();
      response.setRetcode(ResponseCode.FAILED);
      response.setRetdesc("上传失败");
    }

    return response;
  }
}

重启项目之后,就可以访问各个接口

springboot配置事务

springboot配置事务有两种方式

1、在SpringbootdemoApplication.java项目入口,添加@EnableTransactionManagement的注解用来开启事务

2、在service实现类上添加@Transactional注解,那么该类的所有方法都进行事务管理;也可以直接在service实现类的方法上直接添加@Transactional注解,那么只对该方法进行事务管理,上面代码中有对方法添加事务的例子

springboot打包进行tomcat部署

Edit Configuration -> Maven -> 添加 ->启动 -> 复制war包 -> tomcat webapp ->修改war包的名字 -> tomcat bin -> startup.bat

tomcat启动之后,访问 http://localhost:8080/springbootdemo/welcome/welcomeIndex 进行验证

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • IDEA上面搭建一个SpringBoot的web-mvc项目遇到的问题

    这几天一直在研究IDEA上面怎么搭建一个web-mvc的SpringBoot项目,看网上的教程一步步的搭建,可是还是出现一堆的问题. 为了让大家以后少走一些弯路,我在这里分享一下我这几天研究的成果,也希望对大家能有所帮助. 这里先介绍一下各种环境的配置信息:idea2016.2.1  jdk1.8.0_31 因为SpringBoot中是内置tomcat的,所以也就不需要额外的tomcat配置了,现在开始讲如何在idea上面搭建SpringBoot web-mvc项目了 步骤一:在IDEA中新建一

  • SpringBoot快速搭建web项目详细步骤总结

    最近在学习Spring Boot 相关的技术,刚接触就有种相见恨晚的感觉,因为用spring boot进行项目的搭建是在太方便了,我们往往只需要很简单的几步,便可完成一个spring MVC项目的搭建,感觉就是下图: 好,下面就本人搭建项目的过程简单说说如何快速搭建一个spring MVC项目,相信我,spring-boot这趟车,你上了根本就停不下来了! 下面是这篇博客的主要内容: spring boot 介绍 spring boot 项目快速搭建 spring-boot中单元测试 sprin

  • SpringBoot之Helloword 快速搭建一个web项目(图文)

    背景: Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程.该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置.通过这种方式,Spring Boot致力于在蓬勃发展的快速应用开发领域(rapid application development)成为领导者. Spring Boot(英文中是"引导"的意思),是用来简化Spring应用的搭建到开发的过程.应用开箱即用,只要通过 "just

  • 运用springboot搭建并部署web项目的示例

    前言 一直以来都是用springmvc+mybatis进行后端接口开发工作,最近闲来无事,根据现有功能需求,用springboot+mybatis部署一套简单的web项目. 所用工具 IntelliJ IDEA 2018.1.4 JDK 1.8 apache-tomcat-8.0.50 所解决的问题 1.如何用idea创建springboot项目 2.如何进行 服务器.数据库.mybatis.视图解析器的配置 3.如何使用mybatis generator 自动生成代码 4.如何使用multip

  • 阿里云服务器linux系统搭建Tomcat部署Web项目

    整个过程我给它分成四个步骤: 下载并安装jdk 下载并安装Tomcat 配置阿里云服务器信息 部署web项目 使用的工具:Xshell.WinSCP. 没有安装jdk的小伙伴点击上方超链接跳转到安装jdk博客 下载并安装Tomcat 到这个网页下查看最新的镜像:https://mirrors.tuna.tsinghua.edu.cn/apache/tomcat 使用工具Xshell操作Linux系统 移动到home目录下载tomcat 下载 wget https://mirrors.tuna.t

  • 云服务器部署 Web 项目的实现步骤

    目录 一: 搭建 Java 部署环境 1: 安装 JDK 2: 安装 Tomcat 总结 如何验证tomcat是否启动成功? 3: 安装 MySQL 二: 部署 web 项目 1: 给服务器准备好依赖的数据 2: 微调我们的 Java 代码 3: 重新打包 4: 上传到服务器上 5: 验证 一: 搭建 Java 部署环境 之前说过 yum这个命令了,是"包管理器",可以理解为他就像是"应用商店",我们需要安装 JDK,Tomcat,还有Mysql,当然,我们下载需要

  • 在Tomcat中部署Web项目的操作方法(必看篇)

    在这里介绍在Tomcat中部署web项目的三种方式: 1.部署解包的webapp目录 2.打包的war文件 3.Manager Web应用程序 一:部署解包的webapp目录 将Web项目部署到Tomcat中的方法之一,是部署没有封装到WAR文件中的Web项目.要使用这一方法部署未打包的webapp目录,只要把我们的项目(编译好的发布项目,非开发项目)放到Tomcat的webapps目录下就可以了.如下图所示: 这时,打开Tomcat服务器(确保服务器打开),就可以在浏览器访问我们的项目了,如下

  • python+Django+pycharm+mysql 搭建首个web项目详解

    本文实例讲述了python+Django+pycharm+mysql 搭建首个web项目.分享给大家供大家参考,具体如下: 前面的文章记录了环境搭建的过程,本节记录首个web项目调试 首先检查安装的模块,输入dos命令 pip list, 会显示已安装的模块,看是否有Django,PyMySQL模块 C:\Users\Administrator\PycharmProjects>pip list DEPRECATION: The default format will switch to colu

  • IntelliJ IDEA 部署 Web 项目,看这一篇够了!

    最近公司正好也是用之前自己比较熟悉的IDEA而不是Eclipse,为了更深入理解和使用,就找来各种资料再研究一下,这里整理后来个输出. IDEA 中最重要的各种设置项,就是这个 Project Structre 了,关乎你的项目运行,缺胳膊少腿都不行. 1.1 Project Project name: 定义项目的名称: Project SDK: 设置该项目使用的JDK,也可以在此处新添加其他版本的JDK: Project language level: 这个和JDK的类似,区别在于,假如你设置

  • Docker部署web项目的实现

    上一篇已经安装好docker服务,下面继续介绍如何部署web项目 一:随便创建目录dock,准备好如下文件: 二.编写Dockerfile,通过它能快速地构建docker镜像 vi Dockerfile 新增如下配置 FROM centos MAINTAINER this is dock image <jsh> ADD jdk1.8.0_191 /usr/local/java ENV JAVA_HOME /usr/local/java ENV JAVA_BIN /usr/local/java/

  • 简述Docker安装Tomcat镜像并部署web项目

    一.安装Tomcat 1.查找Docker Hub上的tomcat镜像 docker search tomcat 2.拉取官方的镜像 docker pull tomcat 等待下载完毕,需要一些时间. 3.查看docker所有的镜像 docker images 4.启动tomcat镜像 注:前者是外围访问端口:后者是容器内部端口 docker run -d -p 8080:8080 tomcat 注:前者是外围访问端口:后者是容器内部端口 如下命令可后台启动tomcat -d: 后台运行容器,并

  • Tomcat部署web项目出现http状态404未找到的详细解决方案

    问题描述: 当我们向tomcat服务器发起请求时,出现如下的错误状态提示–404.这个问题在开发过程中可能会经常遇到,所以做一个归纳总结: 以下的内容适用于IDEA,使用其他编辑器的小伙伴们需要注意区别. 情景① –> 访问的资源并不存在,仔细检查文件名与路径中的文件名是否一致,比如:hello.jsp写成了hallo.jsp. 情景② –> 虚拟路径没有写对,可以在配置tomcat里查看虚拟路径名,一般请求路径中包含虚拟路径名(也可以不包含),例如:http://localhost:8080

  • IntelliJ IDEA2019实现Web项目创建示例

    一.创建web项目 1.打开idea软件,点击界面上的Create New Project 2.进入如下界面.选中 java Enterprise,配置jdk,tomcat,勾选Web Application案例,注意勾选生成web.xml文件 3.指定项目的名称及项目文件的保存地址 4.创建成功 5.创建class文件和lib文件夹   点击项目的WEF-INF文件夹 ,右键,New → Directory 创建两个文件夹,classes(用来存放编译后输出的class文件) 和 lib(用于

随机推荐