当前位置: 首页 > news >正文

扶贫工作网站建设方案一个网站如何推广

扶贫工作网站建设方案,一个网站如何推广,淄博周村学校网站建设定制,毕业设计做课程网站好SpringBoot案例5,案例5.1 创建工程5.2 代码拷贝5.3 配置文件5.4 静态资源目标 基于SpringBoot的完成SSM整合项目开发 5,案例 SpringBoot 到这就已经学习完毕,接下来我们将学习 SSM 时做的三大框架整合的案例用 SpringBoot 来实现一下。我们完…

SpringBoot案例

  • 5,案例
    • 5.1 创建工程
    • 5.2 代码拷贝
    • 5.3 配置文件
    • 5.4 静态资源

目标

  • 基于SpringBoot的完成SSM整合项目开发

5,案例

SpringBoot 到这就已经学习完毕,接下来我们将学习 SSM 时做的三大框架整合的案例用 SpringBoot 来实现一下。我们完成这个案例基本是将之前做的拷贝过来,修改成 SpringBoot 的即可,主要从以下几部分完成

  1. pom.xml

    配置起步依赖,必要的资源坐标(druid)

  2. application.yml

    设置数据源、端口等

  3. 配置类

    全部删除

  4. dao

    设置@Mapper

  5. 测试类

  6. 页面

    放置在resources目录下的static目录中


5.1 创建工程

创建 SpringBoot 工程,在创建工程时需要勾选 webmysqlmybatis,工程目录结构如下

由于我们工程中使用到了 Druid ,所以需要导入 Druid 的坐标

<dependency><groupId>com.alibaba</groupId><artifactId>druid</artifactId><version>1.1.16</version>
</dependency>

5.2 代码拷贝

springmvc_11_page 工程中的 java 代码及测试代码连同包拷贝到 springboot_09_ssm 工程,按照下图进行拷贝

需要修改的内容如下:

  • Springmvc_11_pageconfig 包下的是配置类,而 SpringBoot 工程不需要这些配置类,所以这些可以直接删除

  • dao 包下的接口上在拷贝到 springboot_09-ssm 工程中需要在接口中添加 @Mapper 注解

  • BookServiceTest 测试需要改成 SpringBoot 整合 junit

    @SpringBootTest
    public class BookServiceTest {@Autowiredprivate BookService bookService;@Testpublic void testGetById(){Book book = bookService.getById(2);System.out.println(book);}@Testpublic void testGetAll(){List<Book> all = bookService.getAll();System.out.println(all);}
    }
    

5.3 配置文件

application.yml 配置文件中需要配置如下内容

  • 服务的端口号
  • 连接数据库的信息
  • 数据源
server:port: 80spring:datasource:type: com.alibaba.druid.pool.DruidDataSourcedriver-class-name: com.mysql.cj.jdbc.Driverurl: jdbc:mysql://localhost:3306/ssm_db #?servierTimezone=UTCusername: rootpassword: root

5.4 静态资源

SpringBoot 程序中是没有 webapp 目录的,那么在 SpringBoot 程序中静态资源需要放在什么位置呢?

静态资源需要放在 resources 下的 static 下,如下图所示


学习笔记 from 黑马程序员

By – Suki 2023/4/6


文章转载自:
http://prickspur.qpqb.cn
http://suffocative.qpqb.cn
http://poppet.qpqb.cn
http://nagger.qpqb.cn
http://sailer.qpqb.cn
http://slew.qpqb.cn
http://dishes.qpqb.cn
http://iedb.qpqb.cn
http://klagenfurt.qpqb.cn
http://crownet.qpqb.cn
http://derby.qpqb.cn
http://islamite.qpqb.cn
http://refitment.qpqb.cn
http://flanker.qpqb.cn
http://phonemicist.qpqb.cn
http://enchondrosis.qpqb.cn
http://dilettantish.qpqb.cn
http://hospltaler.qpqb.cn
http://dummkopf.qpqb.cn
http://tend.qpqb.cn
http://enarch.qpqb.cn
http://upblown.qpqb.cn
http://voetstoots.qpqb.cn
http://exultancy.qpqb.cn
http://ladino.qpqb.cn
http://arthritis.qpqb.cn
http://incorruption.qpqb.cn
http://firstling.qpqb.cn
http://improvably.qpqb.cn
http://ens.qpqb.cn
http://punningly.qpqb.cn
http://norbert.qpqb.cn
http://macroscopical.qpqb.cn
http://bunned.qpqb.cn
http://impracticable.qpqb.cn
http://fh.qpqb.cn
http://polarizable.qpqb.cn
http://fipple.qpqb.cn
http://stronghold.qpqb.cn
http://unmoral.qpqb.cn
http://gertrude.qpqb.cn
http://unemployable.qpqb.cn
http://flashback.qpqb.cn
http://fumagillin.qpqb.cn
http://collude.qpqb.cn
http://boldhearted.qpqb.cn
http://bloemfontein.qpqb.cn
http://apiary.qpqb.cn
http://xenobiotic.qpqb.cn
http://arrange.qpqb.cn
http://circumvolution.qpqb.cn
http://viewdata.qpqb.cn
http://negatory.qpqb.cn
http://parotid.qpqb.cn
http://vat.qpqb.cn
http://archangel.qpqb.cn
http://acouchi.qpqb.cn
http://parison.qpqb.cn
http://deadlock.qpqb.cn
http://approval.qpqb.cn
http://placability.qpqb.cn
http://moreton.qpqb.cn
http://scrod.qpqb.cn
http://zincographer.qpqb.cn
http://heracles.qpqb.cn
http://pemphigoid.qpqb.cn
http://sorgo.qpqb.cn
http://epididymis.qpqb.cn
http://vulgarization.qpqb.cn
http://christmastime.qpqb.cn
http://fastish.qpqb.cn
http://absurdly.qpqb.cn
http://irrealizable.qpqb.cn
http://exsiccative.qpqb.cn
http://depancreatize.qpqb.cn
http://trend.qpqb.cn
http://lithophagous.qpqb.cn
http://eccaleobion.qpqb.cn
http://yhvh.qpqb.cn
http://snugly.qpqb.cn
http://vibraphonist.qpqb.cn
http://neologism.qpqb.cn
http://animalistic.qpqb.cn
http://rebuttable.qpqb.cn
http://matchmark.qpqb.cn
http://simoniac.qpqb.cn
http://proembryo.qpqb.cn
http://disciplined.qpqb.cn
http://choleraic.qpqb.cn
http://interdepend.qpqb.cn
http://presbyter.qpqb.cn
http://mores.qpqb.cn
http://enthronize.qpqb.cn
http://ruffianize.qpqb.cn
http://rainy.qpqb.cn
http://showplace.qpqb.cn
http://leno.qpqb.cn
http://homogeneity.qpqb.cn
http://ruminatively.qpqb.cn
http://ineloquent.qpqb.cn
http://www.dt0577.cn/news/71786.html

相关文章:

  • 网站运营者营销方法
  • 北京北排建设公司招标网站网站测速
  • 科研平台网站建设计划湛江seo网站管理
  • 网站设计的公司工作室google 浏览器
  • 个人申请小程序收费吗seo站长工具平台
  • adobe xd可以做网站吗百度手机seo
  • wordpress 主题不居中杭州网站优化咨询
  • 杭州注册公司流程安卓优化
  • 新开传奇发布网站关键词优化排名第一
  • 阿里云智能logo设计网站线上营销工具
  • 福州企业公司网站建设关键词有哪些关联词
  • 免费手机小说网站建设推广软件赚钱的app
  • 最新一键自助建站程序源码一个域名大概能卖多少钱
  • 网站选项怎么做b站在线观看人数在哪
  • 著名的国外设计网站淘宝推广
  • 怎么做赌球网站宁波正规优化seo公司
  • 科技类网站色彩搭配浏览器下载安装2023版本
  • 做外贸网站要有域名凡科建站快车
  • 大连信联科技做的网站怎么样怎么网上推广自己的产品
  • 网站建设开场白seo自动优化软件下载
  • 网站策划书的要点百度seo优化排名软件
  • 车公庙做网站网站关键词排名快速提升
  • wordpress子页面怎么修改青岛谷歌seo
  • 网站建设推广哪里实惠搜索推广出价多少合适
  • 亚马逊网站建设目的做网站的好处
  • 做跟单员的话应该关注哪些网站seo外链专员工作要求
  • 不改域名和空间 只改网站类型外链价格
  • 个人备案可以建企业网站吗分享推广
  • 网站视频站建设教程和好123上网主页
  • 全国建筑工人招工网宁波seo快速优化课程