本篇內(nèi)容介紹了“Idea SpringMVC+Spring+MyBatis+Maven怎么使用”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)專注于漢川網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供漢川營(yíng)銷(xiāo)型網(wǎng)站建設(shè),漢川網(wǎng)站制作、漢川網(wǎng)頁(yè)設(shè)計(jì)、漢川網(wǎng)站官網(wǎng)定制、微信小程序開(kāi)發(fā)服務(wù),打造漢川網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供漢川網(wǎng)站排名全網(wǎng)營(yíng)銷(xiāo)落地服務(wù)。
File-New Project
選中左側(cè)的Maven,選中右側(cè)上方的Create from archetype,然后選中下方列表中的webapp,然后點(diǎn)擊Next
在GroupId和ArtifactId中填入指定內(nèi)容,點(diǎn)擊Next
直接點(diǎn)Next
輸入項(xiàng)目名稱,F(xiàn)inish
Idea會(huì)自動(dòng)開(kāi)始下載所依賴的包,等待其完成。
項(xiàng)目剛建好的時(shí)候是沒(méi)有這些文件的,所以自己手動(dòng)創(chuàng)建缺少的文件夾(包)
創(chuàng)建完后的項(xiàng)目框架:
依賴包需要如下:
spring framework
aspectj事務(wù)
c3p0數(shù)據(jù)源
servlet/jsp api
junit4
mybatis
mybatis spring整合
MySQL driver
jstl
<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.0</modelVersion> <groupId>com.elin4it.ssm</groupId> <artifactId>ssm</artifactId> <packaging>war</packaging> <version>1.0-SNAPSHOT</version> <name>ssm Maven Webapp</name> <url>http://maven.apache.org</url> <build> <finalName>ssm</finalName> <plugins> <!--mybatis 逆向工程插件--> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.2</version> <configuration> <verbose>true</verbose> <overwrite>true</overwrite> </configuration> </plugin> </plugins> </build> <properties> <spring.version>4.1.1.RELEASE</spring.version> </properties> <dependencies> <!-- springframe start --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-oxm</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> </dependency> <!-- springframe end --> <!--aspectj start--> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.8.6</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>1.8.6</version> </dependency> <!--aspectj end--> <!--c3p0--> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.5.1</version> </dependency> <!--servlet/jsp api start--> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.1</version> <scope>provided</scope> </dependency> <!--servlet/jsp api end--> <!--junit4--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <!--mybatis--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.3.0</version> </dependency> <!--mybatis spring整合--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.2.3</version> </dependency> <!--mysql driver--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.6</version> </dependency> <!--jstl--> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> </dependencies> </project>
插件需要用到mybatis的逆向工程
完整的pom.xml代碼清單:
user表結(jié)構(gòu)
DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(32) NOT NULL COMMENT '用戶名稱', `birthday` date DEFAULT NULL COMMENT '生日', `sex` char(1) DEFAULT NULL COMMENT '性別', `address` varchar(256) DEFAULT NULL COMMENT '地址', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8;
在main/resources中創(chuàng)建generatorConfig.xml文件
generatorConfig.xml代碼清單
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> <generatorConfiguration> <classPathEntry location="F:\jar\mysql\mysql-connector-java-5.1.7-bin.jar"/> <context id="testTables" targetRuntime="MyBatis3" > <commentGenerator> <!-- 是否去除自動(dòng)生成的注釋 true:是 : false:否 --> <property name="suppressAllComments" value="true" /> </commentGenerator> <!--數(shù)據(jù)庫(kù)連接的信息:驅(qū)動(dòng)類、連接地址、用戶名、密碼 --> <!--<jdbcConnection driverClass="${jdbc.driver}"--> <!--connectionURL="${jdbc.url}"--> <!--userId="${jdbc.username}"--> <!--password="${jdbc.password}">--> <!--</jdbcConnection>--> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3306/mybatis?characterEncoding=UTF-8" userId="root" password=""> </jdbcConnection> <!-- 默認(rèn)false,把JDBC DECIMAL 和 NUMERIC 類型解析為 Integer,為 true時(shí)把JDBC DECIMAL 和 NUMERIC 類型解析為java.math.BigDecimal --> <javaTypeResolver> <property name="forceBigDecimals" value="false" /> </javaTypeResolver> <!-- targetProject:生成PO類的位置 --> <javaModelGenerator targetPackage="com.elin4it.springmvcMaven.pojo" targetProject="src\main\java"> <!-- enableSubPackages:是否讓schema作為包的后綴 --> <property name="enableSubPackages" value="false" /> <!-- 從數(shù)據(jù)庫(kù)返回的值被清理前后的空格 --> <property name="trimStrings" value="true" /> </javaModelGenerator> <!-- targetProject:mapper映射文件生成的位置 --> <sqlMapGenerator targetPackage="com.elin4it.springmvcMaven.mapper" targetProject="src\main\resources"> <!-- enableSubPackages:是否讓schema作為包的后綴 --> <property name="enableSubPackages" value="false" /> </sqlMapGenerator> <!-- targetPackage:mapper接口生成的位置 --> <javaClientGenerator type="XMLMAPPER" targetPackage="com.elin4it.springmvcMaven.mapper" targetProject="src\main\java"> <!-- enableSubPackages:是否讓schema作為包的后綴 --> <property name="enableSubPackages" value="false" /> </javaClientGenerator> <!-- 指定數(shù)據(jù)庫(kù)表 --> <table tableName="user"></table> <!-- 有些表的字段需要指定java類型 <table schema="" tableName=""> <columnOverride column="" javaType="" /> </table> --> </context> </generatorConfiguration>
點(diǎn)擊idea右側(cè)的maven選項(xiàng)卡,選擇其中的mybatis-generator,點(diǎn)擊頂部的綠色按鈕運(yùn)行
如果沒(méi)有出錯(cuò)的話,應(yīng)該會(huì)自動(dòng)生成mapper接口文件、xml文件、pojo文件。
在resources/config中創(chuàng)建db.properties,該文件用來(lái)描述mysql連接信息
jdbc.driver = com.mysql.jdbc.Driver jdbc.url = jdbc:mysql://127.0.0.1:3306/mybatis?characterEncoding=UTF-8 jdbc.username = root jdbc.password =
在resources/config/mybatis中創(chuàng)建SqlMapConfig.xml文件,該文件為Mybatis的配置文件,由于跟spring整合,所以一些基礎(chǔ)配置文件都在spring中,在這里該文件中值需要寫(xiě)文件的框架
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> </configuration>
在resources/config/spring中創(chuàng)建springmvc.xml文件
<?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:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> <!--自動(dòng)掃描控制器--> <context:component-scan base-package="com.elin4it.ssm.controller"/> <!--視圖渲染--> <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/"/> <property name="suffix" value=".jsp"/> </bean> <!--控制器映射器和控制器適配器--> <mvc:annotation-driven></mvc:annotation-driven> </beans>
在resources/config/spring中創(chuàng)建applicationContext-dao.xml、application-service.xml、applicationContext-transaction.xml文件
applicationContext-dao.xml
<?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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!--獲取數(shù)據(jù)庫(kù)配置文件--> <context:property-placeholder location="classpath:config/db.properties"/> <!--設(shè)置數(shù)據(jù)源c3p0--> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" value="${jdbc.driver}"/> <property name="jdbcUrl" value="${jdbc.url}"/> <property name="user" value="${jdbc.username}"/> <property name="password" value="${jdbc.password}"/> <property name="maxPoolSize" value="50"/> <property name="minPoolSize" value="2"/> <property name="maxIdleTime" value="60"/> </bean> <!--sqlsessionFactory bean--> <bean id="sqlSession" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="configLocation" value="classpath:config/mybatis/SqlMapConfig.xml"/> <property name="dataSource" ref="dataSource"/> </bean> <!--自動(dòng)掃描mapper接口,并注入sqlsession--> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.elin4it.ssm.mapper"/> <property name="sqlSessionFactoryBeanName" value="sqlSession"/> </bean> </beans>
application-service.xml
<?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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!--掃描service--> <context:component-scan base-package="com.elin4it.ssm.service"/> </beans>
<?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:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> <tx:advice id="txAdvice" transaction-manager="dataSourceTransactionManager"> <tx:attributes> <tx:method name="find*" propagation="REQUIRED"/> <tx:method name="update*" propagation="REQUIRED"/> <tx:method name="delete*" propagation="REQUIRED"/> <tx:method name="add*" propagation="REQUIRED"/> </tx:attributes> </tx:advice> <aop:config> <aop:advisor advice-ref="txAdvice" pointcut="execution(* cn.elinzhou.ixxs.service.*.*(..))"/> </aop:config> </beans>
applicationContext-transaction.xml
<?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:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> <tx:advice id="txAdvice" transaction-manager="dataSourceTransactionManager"> <tx:attributes> <tx:method name="find*" propagation="REQUIRED"/> <tx:method name="update*" propagation="REQUIRED"/> <tx:method name="delete*" propagation="REQUIRED"/> <tx:method name="add*" propagation="REQUIRED"/> </tx:attributes> </tx:advice> <aop:config> <aop:advisor advice-ref="txAdvice" pointcut="execution(* cn.elinzhou.ixxs.service.*.*(..))"/> </aop:config> </beans>
修改web.xml文件內(nèi)容
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1"> <!--設(shè)置spring 配置文件的位置--> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:config/spring/applicationContext-*.xml</param-value> </context-param> <!--配置spring listener--> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!--解決POST亂碼問(wèn)題--> <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>utf-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!--springmvc前端控制器配置--> <servlet> <servlet-name>dispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:config/spring/springmvc.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
創(chuàng)建一個(gè)簡(jiǎn)單的service,只有一個(gè)查看所有用戶列表的功能
UserService.java
package com.elin4it.ssm.service; import com.elin4it.ssm.pojo.User; import java.util.List; /** * Created by 烽 on 2015/7/11. */ public interface UserService { /** * 查找所有用戶 * @return * @throws Exception */ List<User> findUser()throws Exception; }
實(shí)現(xiàn)類UserServiceImpl.java
package com.elin4it.ssm.service; import com.elin4it.ssm.mapper.UserMapper; import com.elin4it.ssm.pojo.User; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * Created by 烽 on 2015/7/11. */ @Service public class UserServiceImpl implements UserService { //User接口 @Autowired private UserMapper userMapper; public List<User> findUser() throws Exception { //調(diào)用mapper類中的selectByExample方法,如果傳入類型為null,則表示無(wú)條件查找 List<User> users = userMapper.selectByExample(null); return users; } }
package com.elin4it.ssm.controller; import com.elin4it.ssm.pojo.User; import com.elin4it.ssm.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import java.util.List; /** * Created by 烽 on 2015/7/11. */ @Controller @RequestMapping("/user") public class UserController { //service類 @Autowired private UserService userService; /** * 查找所用用戶控制器方法 * @return * @throws Exception */ @RequestMapping("/findUser") public ModelAndView findUser()throws Exception{ ModelAndView modelAndView = new ModelAndView(); //調(diào)用service方法得到用戶列表 List<User> users = userService.findUser(); //將得到的用戶列表內(nèi)容添加到ModelAndView中 modelAndView.addObject("users",users); //設(shè)置響應(yīng)的jsp視圖 modelAndView.setViewName("findUser"); return modelAndView; } }
根據(jù)之前寫(xiě)的controller,返回的視圖為findUser,所以在/WEB-INF/views中創(chuàng)建findUser.jsp文件,用來(lái)顯示查詢出來(lái)的結(jié)果
<%-- Created by IntelliJ IDEA. User: 烽 Date: 2015/7/11 Time: 19:47 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <html> <head> <title></title> </head> <body> <h2>findUser</h2> <table> <c:forEach items="${users}" var="u"> <tr> <td>${u.id}</td> <td>${u.username}</td> <td>${u.birthday}</td> </tr> </c:forEach> </table> </body> </html>
1. 使用阿里巴巴Druid連接池(高效、功能強(qiáng)大、可擴(kuò)展性好的數(shù)據(jù)庫(kù)連接池、監(jiān)控?cái)?shù)據(jù)庫(kù)訪問(wèn)性能、支持Common-Logging、Log4j和JdkLog,監(jiān)控?cái)?shù)據(jù)庫(kù)訪問(wèn))
2. 提供高并發(fā)JMS消息處理機(jī)制
3. 所有功能模塊化、所有模塊服務(wù)化、所有服務(wù)原子化的方式,提供可拓展的服務(wù)模型,使程序穩(wěn)定運(yùn)行,永不宕機(jī)
4. 提供Wink Rest、Webservice服務(wù),故可作為獨(dú)立服務(wù)平臺(tái)部署
框架整合:
Springmvc + Mybatis + Shiro(權(quán)限) + REST(服務(wù)) + WebService(服務(wù)) + JMS(消息) + Lucene(搜搜引擎) + Quartz(定時(shí)調(diào)度) + Bootstrap Html5(支持PC、IOS、Android)
框架簡(jiǎn)介:
項(xiàng)目Maven構(gòu)建,真實(shí)大型互聯(lián)網(wǎng)架構(gòu),做到高并發(fā),大數(shù)據(jù)處理,整個(gè)項(xiàng)目使用定制化服務(wù)思想,提供模塊化、服務(wù)化、原子化的方案,將功能模塊進(jìn)行拆分,可以公用到所有的項(xiàng)目中。架構(gòu)采用分布式部署架構(gòu),所有模塊進(jìn)行拆分,使項(xiàng)目做到絕對(duì)解耦,穩(wěn)定壓倒一切~~
持續(xù)集成:
1. 我的待辦工作流服務(wù)(提供Webservice服務(wù))
2. 我的待辦工作流集成JMS消息服務(wù)(支持高并發(fā),可支持成千上萬(wàn)系統(tǒng)集成)
3. 我的任務(wù)提供Rest服務(wù),完成日常的工作管理,通過(guò)定時(shí)調(diào)度平臺(tái),動(dòng)態(tài)生成我的任務(wù)、循環(huán)周期任務(wù)、定時(shí)郵催提醒完成任務(wù)等
4. 文件上傳、多線程下載服務(wù)化、發(fā)送郵件、短信服務(wù)化、部門(mén)信息服務(wù)化、產(chǎn)品信息服務(wù)化、信息發(fā)布服務(wù)化、我的訂閱服務(wù)化、我的任務(wù)服務(wù)化、公共鏈接、我的收藏服務(wù)化等
系統(tǒng)模塊:
1. 用戶管理:
用戶信息管理(添加、刪除、修改、用戶授權(quán)、用戶欄目管理、查詢等)
用戶組管理(添加、刪除、修改、用戶組欄目授權(quán),欄目授權(quán)、查詢、用戶組人員添加查詢等)
用戶角色管理(添加、刪除、修改、用戶角色授權(quán)、用戶角色欄目信息查詢?cè)O(shè)置等)
2. 文章管理:
欄目管理:查詢無(wú)限極欄目樹(shù)、創(chuàng)建無(wú)限極欄目樹(shù)分類(導(dǎo)航欄目、圖片列表欄目、文章列表欄目、文章內(nèi)容欄目等)、刪除、修改欄目信息。
文章管理:創(chuàng)建、刪除、修改文章,多維度文章查詢,包括已發(fā)布、未發(fā)布、所有文章等。文章富文本編輯器、文章多文件上傳、文章?tīng)顟B(tài)控制等。
3. 系統(tǒng)設(shè)置:
數(shù)據(jù)字典管理:支持中、英文信息,支持無(wú)限級(jí)別分類配置,動(dòng)態(tài)控制是否可用等。
部門(mén)信息管理:支持中、英文無(wú)限級(jí)別部門(mén)信息增加,刪除,修改操作,部門(mén)列表、樹(shù)心查詢等。
日志管理:系統(tǒng)日志列表查詢、在線查看、在線下載等
路線管理:集成百度地圖API,提供線路查詢管理功能
Druid Monitor(監(jiān)控):集成阿里巴巴連接池,提供在線連接池監(jiān)控程序,包括:數(shù)據(jù)源、SQL監(jiān)控、URL監(jiān)控、Session監(jiān)控、Spring監(jiān)控等
網(wǎng)站信息管理:通過(guò)系統(tǒng)配置文件進(jìn)行網(wǎng)站內(nèi)容操作,包括郵件服務(wù)器配置、公司基本信息配置等。
4. 集成REST服務(wù),可以用作獨(dú)立服務(wù)平臺(tái)(提供大量實(shí)例及測(cè)試平臺(tái),包括:文件上傳下載、郵件短信發(fā)送、部門(mén)、產(chǎn)品、公共連接、我的收藏、我的任務(wù)、信息發(fā)布等)
5. 集成Quartz調(diào)度,可以用作定時(shí)調(diào)度平臺(tái)(動(dòng)態(tài)配置調(diào)度類、調(diào)度時(shí)間,使程序自動(dòng)執(zhí)行某些業(yè)務(wù))
6. Lucene搜索引擎,可以將文件資料索引化,支持文件內(nèi)容搜索、關(guān)鍵字搜索、高亮關(guān)鍵字等,使信息在毫秒內(nèi)提取查詢出來(lái)
7. 用戶設(shè)置功能:包括修改用戶信息,修改密碼、發(fā)送消息,修改個(gè)人圖片,查看角色、查看用戶組,管理員修改角色、用戶、用戶組等。
8. 集成Webservice平臺(tái),包括jaxws服務(wù)、CXF框架,配置雙加密的權(quán)限認(rèn)證。使服務(wù)集成更加安全。
9. Bootstrap html5提供了兩套前臺(tái)開(kāi)環(huán)境,包括CMS和電子商務(wù)網(wǎng)站,使您的開(kāi)發(fā)更加的簡(jiǎn)潔。
技術(shù)點(diǎn):
1. Springmvc + Mybatis集成、SpringSecurity權(quán)限控制、Spring AOP事務(wù)處理。
2. Wink Rest服務(wù)、Webservice服務(wù):jaxws、CXF等
3. IO 流上傳下載文件,多線程操作
4. 發(fā)送郵件,配置郵件服務(wù)器,發(fā)基于html、純文本格式的郵件
5. MD5加密 (登陸密碼校驗(yàn)加密等),用戶統(tǒng)一Session、Cookie管理,統(tǒng)一驗(yàn)證碼校驗(yàn)等。
6. 數(shù)據(jù)庫(kù)連接池統(tǒng)一配置
7. Quartz定時(shí)調(diào)度任務(wù)集成(直接通過(guò)配置即可)
8. Httpclient破解驗(yàn)證碼,登陸聯(lián)通充值平臺(tái)
9. 漢字、英文拆分、可以用作文檔關(guān)鍵字搜索等。
10. Base64圖片處理,支持PC,Android,IOS
11. Service Socket 、Client Socket 通信技術(shù)(已經(jīng)做過(guò)GPRS數(shù)據(jù)獲取,并用到了項(xiàng)目中)
12. 提供大量工具類,可以直接使用
13. Maven項(xiàng)目構(gòu)建,您可以直接做架構(gòu),可以提升自己的學(xué)習(xí)能力,使您成為真正的架構(gòu)師。
“Idea SpringMVC+Spring+MyBatis+Maven怎么使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
網(wǎng)頁(yè)標(biāo)題:IdeaSpringMVC+Spring+MyBatis+Maven怎么使用
當(dāng)前路徑:http://www.rwnh.cn/article40/jdcjeo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、用戶體驗(yàn)、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站收錄、服務(wù)器托管、動(dòng)態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)