ssm框架 查询数据库信息
时间: 2023-12-21 07:30:42 浏览: 180
SSM框架及数据库
以下是使用SSM框架查询数据库信息的步骤:
1. 配置数据源和MyBatis
在Spring配置文件中配置数据源和MyBatis,例如:
```xml
<!-- 数据源配置 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/test"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
</bean>
<!-- MyBatis配置 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:mybatis-config.xml"/>
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.example.mapper"/>
</bean>
```
2. 创建Mapper接口
在Mapper接口中定义需要执行的SQL语句,例如:
```java
public interface UserMapper {
User selectUserById(int id);
}
```
3. 创建Mapper.xml文件
在Mapper.xml文件中编写SQL语句,例如:
```xml
<mapper namespace="com.example.mapper.UserMapper">
<select id="selectUserById" parameterType="int" resultType="com.example.entity.User">
select * from user where id = #{id}
</select>
</mapper>
```
4. 调用Mapper接口
在Service层中调用Mapper接口,例如:
```java
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserMapper userMapper;
@Override
public User getUserById(int id) {
return userMapper.selectUserById(id);
}
}
```
以上就是使用SSM框架查询数据库信息的步骤。
阅读全文