common tools java study notes

common tools java study notes

A, eclipse tips How many?

  • installation
  • New Java Project
  • New java class
  • Write Java code
  • Run, debug

二、beyond compare

Fast display at two different files.

  1. Installation
    search beyond compare installation, has been next, installation
  2. File comparison
    text comparison -> right and left drag or import the text to be compared
  3. Folder comparison
    folder comparison -> introduced into both sides or drag the folder to be compared
  4. Export files to a directory
    selected point saved when you save the structure

Three, SVN version control

  1. windows installation main tortoise svn client
    download -> next
  2. Install Chinese voice packet
    download -> next
  3. Detection (detection from svn to local)
    new blank folder -> Right -> SVN detection -> fill in the address detected -> OK
  4. Import (from the local to upload code to the svn)
    Right -> TortoiseSVN-> repository's browser -> Fill path on the svn server Click OK -> right click -> Select a file or folder -> Select a file or folder to be submitted -> fill this submission in the window Description

After the top of the steps was not enough, we need to re-import the items we checked out, only to re-detected by the svn version control, and detection steps of the same.

  1. How to submit new and modify svn up
  • You can see the file with a green check mark: that there is no update after the upload modified.
  • If modified: red exclamation mark! .
    Before submitting to update: right -> svn commit -> tick to submit files and content submitted instructions.
    Red conflict on an update, double-click to open the text to operate.
  1. View svn log
    in required to view the log above: Right -> TortoiseSVN-> Display log -> three parts: the record submitted by the description file involved.
  2. Rollback (version rollback function)
    Right -> TortoiseSVN-> Logs -> View previous selection error log submissions -> right the record, choose Revert to this version -> click Restore, OK
  3. version control
  • Like the time before submission of written instructions on the code content.
  • Use tagging: before release to make a label for the current version
    requires the right choice on the turtle tagging project: Right -> TortoiseSVN-> branch / tag (T) -> tag on the path to enter the server (need to create) and comments -> confirm

Fourth, mysql database using Navicat Easy Fun

  1. Open Navicat:
    Connection -> Connection name: mysql, the host name or IP address: localhost, port: 3306 username: root, password: mysql1234-> Test Connection -> OK

Five, FlashFXP- pleasant upload files

FlashFXP is a powerful FXP FTP software.

  1. FlashFXP installation
    extract from it (green edition), does not require installation.
  2. Ftp connection service
    click Quick Connect -> Quick Connect address, account number, password -> OK
  3. Upload files
    right on FTP -> New Folder -> Open Folder -> left of the file to be uploaded onto the right
  4. Download the file
    to drag files from the left to the right

Six, IDEA installation and use

  1. Install
    official website to download -> next.
  2. Use
    open: you can open Eclipse project.
  3. new project
  4. Tomcat idea in the configuration:
    a RUN-> Configurations- the Edit> ±> select TomEE Server or Tomcat server-> select Local-> the right server-> configure ... -> Tomcat Home : Select Apache-Tomcat-7.0.78-> ok- > JRE: 1.8-> Next deployment deployment -> + - Application content> HelloWorld->: / HelloWorld

Seven GIT distributed version control
computer acting as a server

  • git working directory - see the native file or folder
  • git staging area - local executive add the temporary storage of
  • git local library - Local commmit submitted after execution
  • git remote libraries - places after performing push submitted

Eight, SecureCRT- easy to learn various operating systems

Terminal emulation program, you can log in to the UNIX or Linux server, execute Linux commands on it.
CRT installation

SecureCRT Chinese crack version

Nine, with postMan rapid test Rest Interface
postMan installation

Ten, using PLSQL oracle database Easy Fun

PLSQL Developer is Oracle database development tool.

Installation PLSQL, finished package

XI, Easy Fun maven- acquaintance MAVEN

maven is a project management tool.

maven's advantages:
maven is not only a build tool, it is still dependent on management tools and project management tool that provides a free central warehouse, can help us to automatically download build, jar package version control, Plugin plugin, site functionality, cross-platform, agreed to excellent in the configuration.

Twelve, Easy Fun maven-MAVEN build java projects and core concepts

  1. Installation and Configuration
    official website to download the compressed package -> maven of extracting archive. Extract the directory is best not to have Chinese -> Configure the system environment variables -> M2_HOME, the path where the value of the package maven -> set the environment variable Path, the% M2_HOME% \ bin join the Path -> in conf / settings.xml File configured local repository, so download jar package will be stored in the development of our catalog -> open find F: maven_repository-> verify the installation, open a command line window, type mvn -v view the
    first step in configuring eclipse: open windows-> Preferences-> Maven-> Installations, to the right click Add, add maven directory, in the User setting, set config / settings.xml file maven installation directory.
    The second step to create a maven project:
    1, File-> New-> other-> Maven Project, click Next
    2, and then click Next select Maven skeleton, where select quickstart, click the Next
    3, GroupId enter the company name com.ffcs, ArtifactId enter a project name: mavenstudly, enter Version, Package information click finish
    to complete the
    4, project structure
    src / main / java: storing Java file
    src / main / resource: items stored in resource files, such as spring, hibernate profile
    target: the project output position, such as jar, class file
    pom.xml: maven project core profile
    step packaged items:
    Pom find the path of the project file is located, type cmd to open a command line window, type (under another project path) command mvn clean package to package the project, and then packaged complete the next target directory will be able to see the generated jar files
  2. Discern whether a project is a maven project
    directly to see if there pom file in the root directory, showing his importance.
  3. It is what maven pom
    POM is the Project Object Mode acronym, code, project object model. It is the basic unit of work in maven, is a xML file.
  4. POM what use is it?
    It contains various configuration information, attribute item, dependent, the configuration information are constructed with inside abstract object model.
  5. POM how to use?
    By configuring each appointment to xml nodes to manage information. Before creating a POM, you should first determine the coordinates: groupId, artifiactId, version
  6. Local storage warehouse is used to store all the items of dependency (and other plug-in jar files), these files are downloaded to the local maven folder.
  7. Remote storage warehouse is to provide local resource-dependent download. If there is an internal private warehouse, the project will depend downloaded from remote private internal library, if not it will default download from a central repository.
    Here Insert Picture Description

Thirteen, how to use SoapUI test webService interfaces?
SoapUI is open source testing tools.
Installation and use SoapUI
download and install

Published 13 original articles · won praise 0 · Views 278

Guess you like

Origin blog.csdn.net/m0_46129241/article/details/104496045