springboot實現啟動直接訪問項目地址
springboot啟動直接訪問項目地址
方式一
編輯啟動類(我的啟動類是ApplicationBootstrap) => 進去後找到圖中標記處Add按鈕
選中菜單中的 Launch Web Browser => 選擇瀏覽器 => 輸入打開網址 => 保存後項目啟動
啟動項目 . . .
方式二
springboot啟動直接訪問項目地址
該類放置的位置,比springboot 啟動類低一級即可,一般我都會創建一個config 文件夾,然後把它們放到一起
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 文件如下:
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.8.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.example</groupId> <artifactId>demo</artifactId> <version>0.0.1-SNAPSHOT</version> <name>springBoot</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.30</version> </dependency> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.5</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.7</version> <configuration> <!--配置文件的位置--> <configurationFile>src/main/resources/generatorConfig.xml</configurationFile> <verbose>true</verbose> <overwrite>true</overwrite> </configuration> <executions> <execution> <id>Generate MyBatis Artifacts</id> <goals> <goal>generate</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.7</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>
springBoot啟動類配置
運行,訪問http://localhost:8080/getUserById,報錯
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
查瞭半天沒有發現問題,後來看瞭編譯後文件發現隻有mapper的編譯文件,xml 文件不存在,在網上查瞭下原因,在pom.xml 文件中添加
<resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> </resources>
重新運行,編譯目標文件夾中xml文件生成。訪問成功。
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- springboot新建項目pom.xml文件第一行報錯的解決
- Springboot基礎學習之初識SpringBoot
- spring-boot-maven-plugin報紅解決方案(親測有效)
- Springboot整合freemarker和相應的語法詳解
- 使用maven開發springboot項目時pom.xml常用配置(推薦)