【Java服务端编程〖01〗】搭建环境第一步

  • 1:安装 myeclipse
  • 2:下载解压 tomcat7.55
  • 3:下载解压 maven
  • 4:配置maven,之所以用maven 是因为 maven管理项目很方便,之所以重新配置maven 是因为本地maven版本低,功能具有局限性
  • 【Java服务端编程〖01〗】搭建环境第一步_第1张图片
  • 【Java服务端编程〖01〗】搭建环境第一步_第2张图片
  • 【Java服务端编程〖01〗】搭建环境第一步_第3张图片
  • 右击项目 run as maven clean 下载必要的文件
  • 5:新建 maven 项目 ,选择 webapp
  • 6:加载 spring,要想用spring,首先就是要有spring
 
   
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0modelVersion>
    <groupId>com.mdevilgroupId>
    <artifactId>serverartifactId>
    <packaging>warpackaging>
    <version>0.0.1-SNAPSHOTversion>
    <name>server Maven Webappname>
    <url>http://maven.apache.org
    <dependencies>
        <dependency>
            <groupId>junitgroupId>
            <artifactId>junitartifactId>
            <version>4.10version>
            <scope>testscope>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-contextartifactId>
            <version>3.2.10.RELEASEversion>
        dependency>
        <dependency>
            <groupId>org.springframeworkgroupId>
            <artifactId>spring-webmvcartifactId>
            <version>3.2.10.RELEASEversion>
        dependency>
    dependencies>
    <build>
        <finalName>serverfinalName>
    build>
project>
 
    
web.xml,程序第一步,加载 “上下文加载器,加载时的参数为 下面的 <context-param>,以便在程序启动之初,初始化spring,经大神指导,未经初始化的spring不可用
xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <context-param>
        <param-name>contextConfigLocationparam-name>
        <param-value>classpath:applicationContext.xmlparam-value>
    context-param>
    
        <listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>
    listener>
web-app> 
 
     
applicationContext.xml,该文件即上文 “上下文加载器”需要加载的 上下文文件,该文件实现了对spring的初始化配置,开启了多个特性,具体特性是干什么的,我也不知道,格式固定。
xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.2.xsd">
    <context:annotation-config />
beans>  
  • 7:配置tomcat,用自己下载的tomcat,方便管理,控制
  • 【Java服务端编程〖01〗】搭建环境第一步_第4张图片【Java服务端编程〖01〗】搭建环境第一步_第5张图片【Java服务端编程〖01〗】搭建环境第一步_第6张图片【Java服务端编程〖01〗】搭建环境第一步_第7张图片【Java服务端编程〖01〗】搭建环境第一步_第8张图片

  • 8:在浏览器中输入 http://localhost:8080/server/
  • 【Java服务端编程〖01〗】搭建环境第一步_第9张图片



 











你可能感兴趣的:(Java服务端编程)