sts

使用Eclipse-Maven-git做Java开发(3)--Eclipse的安装和配置

走远了吗. 提交于 2019-12-06 03:28:11
本文的内容需要先安装JDK和maven,也就是前面两篇的步骤完成之后再按照本文所述步骤进行才可; 虽然说很多人都说使用 IDEA 更巴适,但是用了Eclipse很久了,很多习惯都已经养成了,尝试过使用 IDEA,但是没能适应,相信还是有很多人喜欢使用Eclipse的,那么接下来我就说明一下怎么安装和配置 Eclipse; 前面的博客发布了已经很长时间了,本想之前发的,草稿也已经写好了,但是这不是新版本发布了嘛,所以就干脆更新为最新版本的再发布好啦; 0、说明 我平时都是在 Windows 7上面使用STS(Spring Tool Suites,一个针对spring开发的定制eclipse),所以说本文讲的平台都是基于 Windows 7系统的,eclipse也将先说明官方版本,然后主要以STS为讲解对象,但是他们大体上都是一致的,所以说操作上都是一样的; 同时,推荐大家使用STS,真的很好用,至于myeclipse,也就推荐大家不要用了吧; 1、准备资源 首先是官网地址: http://www.eclipse.org/downloads/ 提供了很多的打包版本,针对不同的使用环境,整合了不同的开发插件,由于广大的开发人员都是倾向于开发web相关的程序的,所以说建议大家下载Java EE的版本: http://www.eclipse.org/downloads/packages

STS,MyEclipse中Maven配置

ぃ、小莉子 提交于 2019-12-05 18:32:59
本文以STS的环境做讲解,MyEclipse环境和STS差别不大,配置过程相似。 STS是解压版的,启动后,可以看到已经有了Maven插件 , , 但是,STS也同时给你了一个Maven,但是通常不建议使用STS自带的maven,其他的工具也一样,例如MyEclipse中自带的tomcat我并没有用,而是自己配置的自己的解压版的tomcat。使用默认的也可以,不过有时候可能出现各种莫名其妙的问题。 一、首先下载Maven并配置自定义本地仓库 它是apache下面的项目,下载地址: http://maven.apache.org/ , 下载完成之后,解压Manen到你的磁盘中,建议解压目录不要太深,我解压到了G:\apache-maven-3.0.5下,同时找到解压后的conf文件夹下的settings.xml文件,使用文本编辑器打开,修改默认的本地仓库的地址,不然的话,它给你的默认本地仓库是在C:\Users\Administrator\.m2\repository下面,这样,你的C盘会越来越大,因为所有的jar都下载到了该目录下了,同时会在重装系统的时候丢失所有的C盘的jar包。 修改默认本地仓库地址,在 <settings></settings> 标签之间加入 <localRepository>你的本地仓库地址</localRepository>, 我是放在了H:/Maven3

sts jar打开class文件中文乱码

随声附和 提交于 2019-12-05 06:19:40
参考链接: https://blog.csdn.net/bell2008/article/details/40978959 复制一下: 1,问题来源是在eclipse中直接查看springside的class(由eclipse自动反编译)里面注释的乱码问题: Preferences-General-Workspace-Text file encoding 设置为uft-8 最后重启一下eclipse通常就ok了。 2,若是关联jar的源码出现乱码,则使用以下方法尝试: 将Eclipse的Preferences中的General》ContentTypes中的Java Class File和Text的default encoding都设置成了UTF-8(或者是其他你需要设置的编码格式) 重新关联一次!如果还不行,尝试把源码jar包换了地方重新关联一次. 3.然后重启sts或者eclipse 来源: https://www.cnblogs.com/wenwujuncheng/p/11909884.html

Eclipse安装STS插件两种方式

核能气质少年 提交于 2019-12-03 11:56:20
spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。通过这种方式,Boot致力于在蓬勃发展的快速应用开发领域(rapid application development)成为领导者。也就是说,Spring Boot是为了简化Spring开发而生,主要思想是降低spring的入门,使得新手可以以最快的速度让程序在spring框架下跑起来。 今天我们就来创建第一个基于eclipse(eclipse-jee-neon-3-win32-x86_64.zip)+spring boot创建的项目。 一、安装STS插件 要在eclipse使用spring boot创建项目,必须先安装STS(Spring Tool Suite (STS) for Eclipse),如果网速给力的话可以选择在线安装,否则建议选择离线安装。 1.在线安装 Help -> Eclipse Marketplace Search或选择“Popular”标签,选择Spring Tool Suite (STS) for Eclipse插件,安装: 2. 离线安装 (1)先下载STS插件,下载地址为: https://spring.io/tools/sts/all ,下载下面的ZIP包。

STS工具:mybayis连接oracle数据库

こ雲淡風輕ζ 提交于 2019-12-03 07:38:26
1.pom.xml文件中的依赖 刚添加依赖的时候会报错,原因是jar包下不下来. 2.我的jdk是1.6,所以需要升级jdk版本到1.8 执行mvn -v命令,可以看到maven的版本号 DOS窗口执行这条命令: mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.3 -Dpackaging=jar -Dfile=ojdbc6.jar 执行完上面命令后就发现本地仓库有了oracle6的jar包 注意pom.xml文件中version版本号和上面红线处的版本号一致 之后maven -->update project 来源: https://www.cnblogs.com/curedfisher/p/11783500.html

Lombok and STS issue - Method undefined

匿名 (未验证) 提交于 2019-12-03 03:08:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have STS versioned 3.6.3.SR1 that's based on Eclipse Luna 4.4.1. I have did the following steps: 1) Donwload and run the lombak runnable jar and gave the path of my STS. 2) I verified the entries of vmargs, but was missing Xbootclasspath and added it to have like, -vmargs -Dosgi.requiredJavaVersion=1.6 -XX:MaxPermSize=256m -Dorg.eclipse.swt.browser.IEVersion=10001 -Xms512m -Xmx1024m -javaagent:C:\tools\Lombok\lombok.jar -Xbootclasspath/a:C:\tools\Lombok\lombok.jar 3) I have exit and opened the STS both from shortcut as well as the absoulte

WIF STS ID3242: The security token could not be authenticated or authorized

匿名 (未验证) 提交于 2019-12-03 02:33:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm getting the following error in my client application when it tries to authenticate to my service: ID3242: The security token could not be authenticated or authorized Here is the configuration of the client: <?xml version="1.0" encoding="utf-8" ?> <configuration> <system.serviceModel> <bindings> <ws2007HttpBinding> <binding name="stsBinding"> <security mode="Message"> <message clientCredentialType="UserName" establishSecurityContext="false" negotiateServiceCredential="true"/> </security> </binding> </ws2007HttpBinding>

How to run STS on Java version 1.7

匿名 (未验证) 提交于 2019-12-03 02:30:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I need to run eclipse(java 1.7) and STS 3.8.1 ( java 1.8) but if i select the java 7 as default i am getting error in the STS 3.8.1. I am using OS : ubuntu 14.10 Error : Version 1.7.0_80 of the JVM is not suitable for this product. Version: 1.8 or greater is required. Or I select java 1.8 as default eclipse is not working fine. My requirement is to build a Project using java 1.7 with STS. and latest version 3.8.1 doesnot support the java 1.7. and i try to search which version of STS support 1.7 but i am not getting any answer . 回答1: This

Gradle compileJava task warning: [options] bootstrap class path not set in conjunction with -source 1.6

匿名 (未验证) 提交于 2019-12-03 01:08:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Below is the content of the build.gradle file: apply plugin: 'java' archivesBaseName = 'foo-bar' version = '1.0' sourceCompatibility = JavaVersion.VERSION_1_6 targetCompatibility = JavaVersion.VERSION_1_6 sourceSets.main.resources.exclude 'foo.jks' compileJava{ println project.sourceCompatibility println project.targetCompatibility println sourceCompatibility println targetCompatibility } And below is the result of running the Gradle jar task: [sts] ----------------------------------------------------- [sts] Starting Gradle build for the

SpringBoot系列 - 开发用的IDE

匿名 (未验证) 提交于 2019-12-03 00:37:01
使用SpringBoot提供的IDE(Spring Tool Suite)。 下载地址 。下载下来解压直接使用即可。Spring Tool Suite 本来就是基于Eclipse的。 使用IDEA,安装插件:Spring Assistant。可参考文章: https://blog.csdn.net/crazilyer/article/details/80313323 使用Eclipse,安装插件(STS)。Eclipse安装STS插件有如下两种方法: 在 Spring网站 上可以看到Eclipse插件,根据你自己电脑的Eclipse版本下载对应的版本,并在Eclipse里install即可。 怎么知道自己Eclipse版本可看下图: 打开 About Eclipse 点击Eclipse.org,在打开的对话框中即可看到当前Eclipse版本。 在Eclipse Marketplace中搜索STS,即可看到对应的插件,一步一步在线下载并安装(插件比较大,安装要花点时间)。 附:不同的Eclipse版本对JRE版本依赖说明( http://wiki.eclipse.org/Eclipse/Installation ) 更多干货,可访问我的个人网站: https://zhangzw.com ,谢谢! 文章来源: SpringBoot系列 - 开发用的IDE