<? The XML version="1.0" encoding="utf-8"?>
Package com. Lyh. Girl;
The import org. Springframework. Boot. SpringApplication;
The import org. Springframework. Boot. Autoconfigure. SpringBootApplication;
The import org. Springframework. Boot. Autoconfigure. JDBC. DataSourceAutoConfiguration;
The import org. Springframework. Boot. Autoconfigure. Orm. Jpa. HibernateJpaAutoConfiguration;
GirlApplication class -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
@ SpringBootApplication (exclude={DataSourceAutoConfiguration. Class, HibernateJpaAutoConfiguration class})
Public class GirlApplication {
Public static void main (String [] args) {
SpringApplication. Run (GirlApplication. Class, args);
}
}
Yml file -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Spring:
Profiles:
Active: dev
Datasource:
The driver - class - name: com. Mysql.. JDBC driver
Url: JDBC: mysql://127.0.0.1:3306/dbgirl
Username: root
Password: 123456
Jpa:
Hibernate:
DDL - auto: create
The show - SQL: true
The controller class -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Package com. Lyh. Girl;
The import org. Springframework. Beans. Factory. The annotation. Autowired;
The import org. Springframework. Web. Bind. The annotation. *;
@ RestController
@ RequestMapping ("/hello! ")
Public class HelloController {
The @autowired
Private GirlProperties GirlProperties;
@ GetMapping (value="https://bbs.csdn.net/say")
Public String say () {
Return girlProperties. GetCupSize () + girlProperties. GetAge ();
}
}
CodePudding user response:
The eldest brother, later how to solve this problemCodePudding user response:
See the log, table didn't create, could be abnormal execution process,