皮皮网
皮皮网
winform ktv源码

【工作室源码下载】【renci.sshnet源码】【django 源码如何读】maven怎么下载springmvc源码_maven下载不了spring

时间:2024-11-14 12:54:17 分类:综合 编辑:共享源码app
1.如何用springboot创建maven的依赖工程

maven怎么下载springmvc源码_maven下载不了spring

如何用springboot创建maven的依赖工程

       æœ€è¿‘公司运用springboot构建项目,确实比ssh搭建要快很多。springboot官方学习网站

       1.首先要下载maven,用maven管理项目很方便,下载完maven配置好环境,maven我就不细说了。

       2.创建一个maven项目,pom.xml文件里面写这些:

       <modelVersion>4.0.0</modelVersion>

       <groupId>springboot</groupId>

       <artifactId>testSpringBoot</artifactId>

       <version>0.0.1-SNAPSHOT</version>

       <name>testSpringBoot</name>

       <packaging>jar</packaging>

       <!-- 继承父包 -->

       <parent>

       <groupId>org.springframework.boot</groupId>

       <artifactId>spring-boot-starter-parent</artifactId>

       <version>1.1.3.RELEASE</version>

       <relativePath></relativePath>

       </parent>

       <!-- spring-boot的web启动的jar包 -->

       <dependencies>

       <dependency>

       <groupId>org.springframework.boot</groupId>

       <artifactId>spring-boot-starter-web</artifactId>

       </dependency>

       <!--jpa的jar包 ,操作数据库的,类似hibernate-->

       <dependency>

       <groupId>org.springframework.boot</groupId>

       <artifactId>spring-boot-starter-data-jpa</artifactId>

       </dependency>

       <!--mysql驱动-->

       <dependency>

       <groupId>mysql</groupId>

       <artifactId>mysql-connector-java</artifactId>

       </dependency>

       <!--thymeleaf模板jar,是很不错的html数据传递取值,类似jsp的jstl-->

       <dependency>

       <groupId>org.springframework.boot</groupId>

       <artifactId>spring-boot-starter-thymeleaf</artifactId>

       </dependency>

       </dependencies>

       <!--maven的插件-->

       <build>

       <plugins>

       <plugin>

       <groupId>org.springframework.boot</groupId>

       <artifactId>spring-boot-maven-plugin</artifactId>

       </plugin>

       </plugins>

       <!-- 配置java版本 不配置的话默认父类配置的是1.6-->

       <pluginManagement>

       <plugins>

       <plugin>

       <artifactId>maven-compiler-plugin</artifactId>

       <configuration>

       <source>1.7</source>

       <target>1.7</target>

       </configuration>

       </plugin>

       </plugins>

       </pluginManagement>

       </build>

       </project>

       3.创建的文件目录如图:

       4.在com.boot(即最外层目录文件)下写一个如下main方法:

       package com.boot;

       import org.springframework.boot.SpringApplication;

       import org.springframework.boot.autoconfigure.EnableAutoConfiguration;

       import org.springframework.context.annotation.ComponentScan;

       import org.springframework.context.annotation.Configuration;

       @Configuration

       @EnableAutoConfiguration

       @ComponentScan

       public class Application {

       public static void main(String[] args) {

       SpringApplication.run(Application.class,下n下工作室源码下载 args);

       }

       }

       5.在com.boot.web下创建一个类如下:

       package com.boot.web;

       import org.springframework.stereotype.Controller;

       import org.springframework.web.bind.annotation.RequestMapping;

       import org.springframework.web.bind.annotation.ResponseBody;

       @Controller

       public class MainController {

       // @RequestMapping("")

       // public String index(){

       // return "examples/index";

       // }

       @RequestMapping("/")

       @ResponseBody

       String home() {

       return "Hello World!";

       }

       }

       @RequestMapping @ResponseBody

       è¿™ä¸¤ä¸ªæ³¨è§£éƒ½æ˜¯springMVC的,不懂得可以看springMVC

       6.在resources下增加一个application.properties文件

       æ–‡ä»¶å†…容如下配置:

       spring.datasource.platform=mysql

       spring.datasource.url=jdbc:mysql://localhost/springboot?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&autoReconnect=true&failOverReadOnly=false

       spring.datasource.username=root

       spring.datasource.password=root

       spring.datasource.driverClassName=com.mysql.jdbc.Driver

       # Advanced configuration...

       spring.datasource.max-active=

       spring.datasource.max-idle=6

       spring.datasource.min-idle=2

       spring.datasource.initial-size=6

       #create table

       spring.jpa.hibernate.ddl-auto=validate

       server.port=

       server.session-timeout=

       server.tomcat.uri-encoding=UTF-8

       spring.thymeleaf.prefix=classpath:templates/

       spring.thymeleaf.suffix=.html

       spring.thymeleaf.mode=HTML5

       spring.thymeleaf.encoding=UTF-8

       spring.thymeleaf.content-type=text/html

       spring.thymeleaf.cache=false

       è¯¥æ–‡ä»¶çš„配置可以参考springboot的官网

       è¯¥æ–‡ä»¶çš„全部参数配置;如下(摘自官网)

       # ===================================================================

       # COMMON SPRING BOOT PROPERTIES

       #

       # This sample file is provided as a guideline. Do NOT copy it in its

       # entirety to your own application. ^^^

       # ===================================================================

       # ----------------------------------------

       # CORE PROPERTIES

       # ----------------------------------------

       # SPRING CONFIG (ConfigFileApplicationListener)

       spring.config.name= # config file name (default to 'application')

       spring.config.location= # location of config file

       # PROFILES

       spring.profiles.active= # comma list of active profiles

       # APPLICATION SETTINGS (SpringApplication)

       spring.main.sources=

       spring.main.web-environment= # detect by default

       spring.main.show-banner=true

       spring.main....= # see class for all properties

       # LOGGING

       logging.path=/var/logs

       logging.file=myapp.log

       logging.config= # location of config file (default classpath:logback.xml for logback)

       logging.level.*= # levels for loggers, e.g. "logging.level.org.springframework=DEBUG" (TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF)

       # IDENTITY (ContextIdApplicationContextInitializer)

       spring.application.name=

       spring.application.index=

       # EMBEDDED SERVER CONFIGURATION (ServerProperties)

       server.port=

       # JACKSON (JacksonProperties)

       spring.jackson.date-format= # Date format string (e.g. yyyy-MM-dd HH:mm:ss), or a fully-qualified date format class name (e.g. com.fasterxml.jackson.databind.util.ISODateFormat)

       spring.jackson.property-naming-strategy= # One of the constants on Jackson's PropertyNamingStrategy (e.g.

       # THYMELEAF (ThymeleafAutoConfiguration)

       spring.thymeleaf.prefix=classpath:/templates/

       spring.thymeleaf.suffix=.html

       spring.thymeleaf.mode=HTML5

       spring.thymeleaf.encoding=UTF-8

       spring.thymeleaf.content-type=text/html # ;charset=<encoding> is added

       spring.thymeleaf.cache=true # set to false for hot refresh

       # FREEMARKER (FreeMarkerAutoConfiguration)

       spring.freemarker.allowRequestOverride=false

       spring.freemarker.cache=true

       spring.freemarker.checkTemplateLocation=true

       spring.freemarker.charSet=UTF-8

       spring.freemarker.contentType=text/html

       spring.freemarker.exposeRequestAttributes=falseshell.ssh.keyPath=

       shell.ssh.port=

       shell.telnet.enabled= # telnet settings ...

       shell.telnet.port=

       shell.auth.jaas.domain= # authentication settings ...

       shell.auth.key.path=

       shell.authwww.meidiyazx.com/sitemap.txtname=

       shell.authwww.meidiyazx.com/sitemap.txtpassword=

       shell.auth.spring.roles=spring.freemarker.exposeSessionAttributes=false

       spring.freemarker.exposeSpringMacroHelpers=false

       spring.freemarker.prefix=

       spring.freemarker.requestContextAttribute=

       spring.freemarker.settings.*=

       spring.freemarker.suffix=.ftl

       spring.freemarker.templateLoaderPath=classpath:/templates/ # comma-separated list

       spring.freemarker.viewNames= # whitelist of view names that can be resolved

       # GROOVY TEMPLATES (GroovyTemplateAutoConfiguration)

       spring.groovy.template.cache=true

       spring.groovy.template.charSet=UTF-8

       spring.groovy.template.configuration.*= # See Groovy's TemplateConfiguration

       spring.groovy.template.contentType=text/html

       spring.groovy.template.prefix=classpath:/templates/

       spring.groovy.template.suffix=.tpl

       spring.groovy.template.viewNames= # whitelist of view names that can be resolved

       # VELOCITY TEMPLATES (VelocityAutoConfiguration)

       spring.velocity.allowRequestOverride=false

       spring.velocity.cache=true

       spring.velocity.checkTemplateLocation=true

       spring.velocity.charSet=UTF-8

       spring.velocity.contentType=text/html

       spring.velocity.dateToolAttribute=

       spring.velocity.exposeRequestAttributes=false

       spring.velocity.exposeSessionAttributes=false

       spring.velocity.exposeSpringMacroHelpers=false

       spring.velocity.numberToolAttribute=

       spring.velocity.prefix=

       spring.velocity.properties.*=

       spring.velocity.requestContextAttribute=

       spring.velocity.resourceLoaderPath=classpath:/templates/

       spring.velocity.suffix=.vm

       spring.velocity.viewNames= # whitelist of view names that can be resolved

       # INTERNATIONALIZATION (MessageSourceAutoConfiguration)

       spring.messages.basename=messages

       spring.messages.cacheSeconds=-1

       spring.messages.encoding=UTF-8

       # SECURITY (SecurityProperties)

       security.user.name=user # login username

       security.user.password= # login password

       security.user.role=USER # role assigned to the user

       security.require-ssl=false # advanced settings ...

       security.enable-csrf=false

       security.basic.enabled=true

       spring.batch.schema= # batch schema to load

       # AOP

       spring.aop.auto=

       # GIT INFO

       spring.git.properties= # resource ref to generated git info properties file

       7.找到com.boot下的Application以java Application方式启动,然后打开浏览器输入localhost:就会出现Hello World!

       è¿™æ ·ä¸€ä¸ªç®€å•çš„web开发就搭建好了。

本文地址:http://04.net.cn/news/62c28599652.html

copyright © 2016 powered by 皮皮网   sitemap