java中的接口是类吗
450
2022-09-08
springboot实现启动直接访问项目地址
目录springboot启动直接访问项目地址方式一方式二springboot运行无法访问创建一个springBoot 项目项目配置文件springBoot启动类配置
springboot启动直接访问项目地址
方式一
编辑启动类(我的启动类是ApplicationBootstrap) => 进去后找到图中标记处Add按钮
选中菜单中的 Launch Web Browser => 选择浏览器 => 输入打开网址 => 保存后项目启动
启动项目 . . .
方式二
springboot启动直接访问项目地址
该类放置的位置,比springboot 启动类低一级即可,一般我都会创建一个coefNgjXqnfig 文件夹,然后把它们放到一起
package com.hbsc.config;
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;
/**
* @ClassName MyCommandRunner
* @Author: hanyong
* @CreateTime: 2019-01-28
*/
@Component
public class MyCommandRunner implements CommandLineRunner {
@Override
public void run(String... args) {
if(true){
String cmd = "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" + " " + "http://localhost:8082";
Runtime run = Runtime.getRuntime();
try{
run.exec(cmd);
}catch (Exception e){
e.printStackTrace();
}
}
}
}
springboot运行无法访问
学习springBoot 搭建遇到一个问题,在此记录,以便后面自己查看及给遇到相同问题的学习者
创建一个springBoot 项目
在springBoot 的目录中创建了Controler(控制层),Service(逻辑层),Model(实体类),Dao(数据层)
项目配置文件
配置了一个mysql数据库连接信息,访问端口号,编码格式,及mybatis配置
对应的maven中的pom.xml 文件如下:
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
springBoot启动类配置
运行,访问http://localhost:8080/getUserById,报错
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
查了半天没有发现问题,后来看了编译后文件发现只有mapper的编译文件,xml 文件不存在,在网上查了下原因,在pom.xml 文件中添加
重新运行,编译目标文件夹中xml文件生成。访问成功。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~