
Spring-Hibernate
喵喵旺
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[Spring MVC] What is my Spring MVC controller not working?
THIS IS AN ECLIPSE CACHING BUG IF YOUR CONTROLLER DOESN'T WORK THEN TRY THE STEPS BELOW BE SURE TO COME BACK TO THIS ARTICLE Debug Tip #0: Make sure you are accessing the correct URL原创 2017-12-21 11:50:32 · 272 阅读 · 0 评论 -
[Spring]tomcat启动
cd apache-tomcat-9.0.2 cd bin ./catalina.sh run 进入浏览器 http://localhost:8080/原创 2017-12-26 23:34:52 · 317 阅读 · 0 评论 -
[spring Boot] how to package and run Spring Boot application as a JAR file
前提:进入到当前project的目录下 1. mvn clean install 2. java -jar target/文件名-0.0.1-SNAPSHOT.jar原创 2018-01-06 11:34:29 · 265 阅读 · 0 评论 -
[Spring Boot] Spring Boot Actuator
前提:建好Spring Starting Project 1. src/main/resources目录里的application.properties里加 server.port: 9000 management.port: 9001 management.address: 127.0.0.1 management.security.enabled=false原创 2018-01-06 23:54:00 · 422 阅读 · 0 评论 -
[Postgre SQL] postgre sql
参考此tutorial:http://gitbook.net/postgresql/2013080439.html 1. 直接打开SQL Shell (psql) 2. 点回车直到如下 1. create database database-name; 2.列出所有database:\l 4. 选择一个database: \c databas原创 2018-01-07 12:08:20 · 2294 阅读 · 0 评论